pub struct WalInlineContent {
pub content_id: ContentId,
pub bytes: Vec<u8>,
}Expand description
Carries bytes named by a revision delta in the same commit.
Fields§
§content_id: ContentIdIdentity shared with the accompanying blob_v1 reference.
bytes: Vec<u8>Complete content encoded as a CBOR byte string.
Trait Implementations§
Source§impl Clone for WalInlineContent
impl Clone for WalInlineContent
Source§impl Debug for WalInlineContent
impl Debug for WalInlineContent
Source§impl<'de> Deserialize<'de> for WalInlineContent
impl<'de> Deserialize<'de> for WalInlineContent
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
impl Eq for WalInlineContent
Source§impl PartialEq for WalInlineContent
impl PartialEq for WalInlineContent
Source§impl Serialize for WalInlineContent
impl Serialize for WalInlineContent
impl StructuralPartialEq for WalInlineContent
Auto Trait Implementations§
impl Freeze for WalInlineContent
impl RefUnwindSafe for WalInlineContent
impl Send for WalInlineContent
impl Sync for WalInlineContent
impl Unpin for WalInlineContent
impl UnsafeUnpin for WalInlineContent
impl UnwindSafe for WalInlineContent
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