pub struct BinaryAttachment {
pub identifier: Option<String>,
pub compressed: bool,
pub content: Vec<u8>,
}Expand description
Binary attachment in the metadata of a XML database
Fields§
§identifier: Option<String>§compressed: bool§content: Vec<u8>Trait Implementations§
Source§impl Clone for BinaryAttachment
impl Clone for BinaryAttachment
Source§fn clone(&self) -> BinaryAttachment
fn clone(&self) -> BinaryAttachment
Returns a duplicate of the value. Read more
1.0.0 · 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 BinaryAttachment
impl Debug for BinaryAttachment
Source§impl Default for BinaryAttachment
impl Default for BinaryAttachment
Source§fn default() -> BinaryAttachment
fn default() -> BinaryAttachment
Returns the “default value” for a type. Read more
Source§impl PartialEq for BinaryAttachment
impl PartialEq for BinaryAttachment
impl Eq for BinaryAttachment
impl StructuralPartialEq for BinaryAttachment
Auto Trait Implementations§
impl Freeze for BinaryAttachment
impl RefUnwindSafe for BinaryAttachment
impl Send for BinaryAttachment
impl Sync for BinaryAttachment
impl Unpin for BinaryAttachment
impl UnwindSafe for BinaryAttachment
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