pub struct Art {
pub id: i64,
pub sha256: String,
pub mime: String,
pub width: Option<u32>,
pub height: Option<u32>,
pub byte_len: u64,
pub data: Vec<u8>,
}Fields§
§id: i64§sha256: String§mime: String§width: Option<u32>§height: Option<u32>§byte_len: u64§data: Vec<u8>Trait Implementations§
impl Eq for Art
impl StructuralPartialEq for Art
Auto Trait Implementations§
impl Freeze for Art
impl RefUnwindSafe for Art
impl Send for Art
impl Sync for Art
impl Unpin for Art
impl UnsafeUnpin for Art
impl UnwindSafe for Art
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