pub struct FileBytes;Expand description
Raw file bytes stored as a blob.
Use this schema when the payload represents a file snapshot and you want to preserve that provenance explicitly instead of falling back to UnknownBlob.
Trait Implementations§
Source§impl BlobSchema for FileBytes
impl BlobSchema for FileBytes
Source§impl ConstDescribe for FileBytes
impl ConstDescribe for FileBytes
Auto Trait Implementations§
impl Freeze for FileBytes
impl RefUnwindSafe for FileBytes
impl Send for FileBytes
impl Sync for FileBytes
impl Unpin for FileBytes
impl UnsafeUnpin for FileBytes
impl UnwindSafe for FileBytes
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
Source§impl<T> Describe for Twhere
T: ConstDescribe,
impl<T> Describe for Twhere
T: ConstDescribe,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more