pub struct ArtVariantOwned {
pub name: String,
pub template: String,
pub is_default: bool,
pub args: FxHashMap<String, Value>,
pub viewport: Option<ViewportConfig>,
pub skip_vrt: bool,
pub loc: Option<SourceLocation>,
}Fields§
§name: String§template: String§is_default: bool§args: FxHashMap<String, Value>§viewport: Option<ViewportConfig>§skip_vrt: bool§loc: Option<SourceLocation>Trait Implementations§
Source§impl Clone for ArtVariantOwned
impl Clone for ArtVariantOwned
Source§fn clone(&self) -> ArtVariantOwned
fn clone(&self) -> ArtVariantOwned
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 ArtVariantOwned
impl Debug for ArtVariantOwned
Source§impl<'de> Deserialize<'de> for ArtVariantOwned
impl<'de> Deserialize<'de> for ArtVariantOwned
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
Auto Trait Implementations§
impl Freeze for ArtVariantOwned
impl RefUnwindSafe for ArtVariantOwned
impl Send for ArtVariantOwned
impl Sync for ArtVariantOwned
impl Unpin for ArtVariantOwned
impl UnsafeUnpin for ArtVariantOwned
impl UnwindSafe for ArtVariantOwned
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