pub struct CssGeneratorInput {
pub rules: Vec<CssRuleInput>,
pub media_queries: Vec<String>,
pub format: CssFormat,
}Expand description
Input for CssGenerator contract
Fields§
§rules: Vec<CssRuleInput>§media_queries: Vec<String>§format: CssFormatTrait Implementations§
Source§impl Clone for CssGeneratorInput
impl Clone for CssGeneratorInput
Source§fn clone(&self) -> CssGeneratorInput
fn clone(&self) -> CssGeneratorInput
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 moreAuto Trait Implementations§
impl Freeze for CssGeneratorInput
impl RefUnwindSafe for CssGeneratorInput
impl Send for CssGeneratorInput
impl Sync for CssGeneratorInput
impl Unpin for CssGeneratorInput
impl UnwindSafe for CssGeneratorInput
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