Struct thaw::CardHeader
source · pub struct CardHeader {
pub children: ChildrenFn,
}Expand description
Fields§
§children: ChildrenFnImplementations§
source§impl CardHeader
impl CardHeader
sourcepub fn builder() -> CardHeaderBuilder<((),)>
pub fn builder() -> CardHeaderBuilder<((),)>
Create a builder for building CardHeader.
On the builder, call .children(...) to set the values of the fields.
Finally, call .build() to create the instance of CardHeader.
Trait Implementations§
source§impl Clone for CardHeader
impl Clone for CardHeader
source§fn clone(&self) -> CardHeader
fn clone(&self) -> CardHeader
Returns a copy 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 From<CardHeader> for Vec<CardHeader>
impl From<CardHeader> for Vec<CardHeader>
source§fn from(value: CardHeader) -> Self
fn from(value: CardHeader) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CardHeader
impl !Send for CardHeader
impl !Sync for CardHeader
impl Unpin for CardHeader
impl !UnwindSafe for CardHeader
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