pub struct DavOpenedDownload {
pub stream: DavContentStream,
pub expected_length: u64,
}Expand description
Opened representation stream and the exact number of bytes it is expected to yield.
Fields§
§stream: DavContentStream§expected_length: u64Implementations§
Source§impl DavOpenedDownload
impl DavOpenedDownload
pub const fn new(stream: DavContentStream, expected_length: u64) -> Self
Auto Trait Implementations§
impl Freeze for DavOpenedDownload
impl !RefUnwindSafe for DavOpenedDownload
impl Send for DavOpenedDownload
impl !Sync for DavOpenedDownload
impl Unpin for DavOpenedDownload
impl !UnwindSafe for DavOpenedDownload
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more