pub struct BlobRef<'a> {
pub data: &'a [u8],
}
Expand description
A chunk of any data
.
Fields§
§data: &'a [u8]
The bytes themselves.
Implementations§
source§impl BlobRef<'_>
impl BlobRef<'_>
sourcepub fn from_bytes(data: &[u8]) -> Result<BlobRef<'_>, Infallible>
pub fn from_bytes(data: &[u8]) -> Result<BlobRef<'_>, Infallible>
Instantiate a Blob
from the given data
, which is used as-is.
Trait Implementations§
source§impl<'de: 'a, 'a> Deserialize<'de> for BlobRef<'a>
impl<'de: 'a, 'a> Deserialize<'de> for BlobRef<'a>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> Ord for BlobRef<'a>
impl<'a> Ord for BlobRef<'a>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'a> PartialOrd for BlobRef<'a>
impl<'a> PartialOrd for BlobRef<'a>
impl<'a> Copy for BlobRef<'a>
impl<'a> Eq for BlobRef<'a>
impl<'a> StructuralPartialEq for BlobRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for BlobRef<'a>
impl<'a> RefUnwindSafe for BlobRef<'a>
impl<'a> Send for BlobRef<'a>
impl<'a> Sync for BlobRef<'a>
impl<'a> Unpin for BlobRef<'a>
impl<'a> UnwindSafe for BlobRef<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)