pub struct ReferenceInformation {
pub content_length: u64,
}Expand description
Result of FileApi::probe_data: the size of the data behind a
/bytes reference, learned via HEAD without downloading the body.
Fields§
§content_length: u64Content-Length of the referenced data, in bytes.
Trait Implementations§
Source§impl Clone for ReferenceInformation
impl Clone for ReferenceInformation
Source§fn clone(&self) -> ReferenceInformation
fn clone(&self) -> ReferenceInformation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReferenceInformation
impl Debug for ReferenceInformation
Source§impl PartialEq for ReferenceInformation
impl PartialEq for ReferenceInformation
Source§fn eq(&self, other: &ReferenceInformation) -> bool
fn eq(&self, other: &ReferenceInformation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReferenceInformation
impl StructuralPartialEq for ReferenceInformation
Auto Trait Implementations§
impl Freeze for ReferenceInformation
impl RefUnwindSafe for ReferenceInformation
impl Send for ReferenceInformation
impl Sync for ReferenceInformation
impl Unpin for ReferenceInformation
impl UnsafeUnpin for ReferenceInformation
impl UnwindSafe for ReferenceInformation
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