pub struct ClassBuilderInput {
pub classes: Vec<String>,
pub responsive: Vec<(Breakpoint, String)>,
pub conditional: Vec<(String, String)>,
pub custom: Vec<(String, String)>,
}Expand description
Input for ClassBuilder contract
Fields§
§classes: Vec<String>§responsive: Vec<(Breakpoint, String)>§conditional: Vec<(String, String)>§custom: Vec<(String, String)>Trait Implementations§
Source§impl Clone for ClassBuilderInput
impl Clone for ClassBuilderInput
Source§fn clone(&self) -> ClassBuilderInput
fn clone(&self) -> ClassBuilderInput
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 ClassBuilderInput
impl RefUnwindSafe for ClassBuilderInput
impl Send for ClassBuilderInput
impl Sync for ClassBuilderInput
impl Unpin for ClassBuilderInput
impl UnwindSafe for ClassBuilderInput
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