pub struct SpacingConfig {
pub xs: String,
pub sm: String,
pub md: String,
pub lg: String,
pub xl: String,
pub xxl: String,
}Fields§
§xs: String§sm: String§md: String§lg: String§xl: String§xxl: StringTrait Implementations§
Source§impl Clone for SpacingConfig
impl Clone for SpacingConfig
Source§fn clone(&self) -> SpacingConfig
fn clone(&self) -> SpacingConfig
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 SpacingConfig
impl Debug for SpacingConfig
Source§impl<'de> Deserialize<'de> for SpacingConfig
impl<'de> Deserialize<'de> for SpacingConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SpacingConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SpacingConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SpacingConfig
impl Serialize for SpacingConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for SpacingConfig
impl RefUnwindSafe for SpacingConfig
impl Send for SpacingConfig
impl Sync for SpacingConfig
impl Unpin for SpacingConfig
impl UnsafeUnpin for SpacingConfig
impl UnwindSafe for SpacingConfig
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