pub struct ProviderIconAsset {
pub source_id: Option<String>,
pub path: String,
pub original_path: String,
pub view_box: [i32; 4],
pub original_sha256: String,
pub processed_sha256: String,
pub transformations: Vec<ProviderPackTransformation>,
}Expand description
Original and processed identities for one local SVG file.
Fields§
§source_id: Option<String>§path: String§original_path: String§view_box: [i32; 4]§original_sha256: String§processed_sha256: String§transformations: Vec<ProviderPackTransformation>Trait Implementations§
Source§impl Clone for ProviderIconAsset
impl Clone for ProviderIconAsset
Source§fn clone(&self) -> ProviderIconAsset
fn clone(&self) -> ProviderIconAsset
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 moreSource§impl Debug for ProviderIconAsset
impl Debug for ProviderIconAsset
Source§impl<'de> Deserialize<'de> for ProviderIconAsset
impl<'de> Deserialize<'de> for ProviderIconAsset
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 ProviderIconAsset
Source§impl PartialEq for ProviderIconAsset
impl PartialEq for ProviderIconAsset
Source§impl Serialize for ProviderIconAsset
impl Serialize for ProviderIconAsset
impl StructuralPartialEq for ProviderIconAsset
Auto Trait Implementations§
impl Freeze for ProviderIconAsset
impl RefUnwindSafe for ProviderIconAsset
impl Send for ProviderIconAsset
impl Sync for ProviderIconAsset
impl Unpin for ProviderIconAsset
impl UnsafeUnpin for ProviderIconAsset
impl UnwindSafe for ProviderIconAsset
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