pub struct ImageEntry {
pub file_key: String,
pub node_id: String,
pub format: String,
pub scale: f64,
pub figma_url: String,
pub cached_data: Option<Vec<u8>>,
pub export_time: SystemTime,
}Fields§
§file_key: String§node_id: String§format: String§scale: f64§figma_url: String§cached_data: Option<Vec<u8>>§export_time: SystemTimeTrait Implementations§
Source§impl Clone for ImageEntry
impl Clone for ImageEntry
Source§fn clone(&self) -> ImageEntry
fn clone(&self) -> ImageEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ImageEntry
impl RefUnwindSafe for ImageEntry
impl Send for ImageEntry
impl Sync for ImageEntry
impl Unpin for ImageEntry
impl UnsafeUnpin for ImageEntry
impl UnwindSafe for ImageEntry
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