pub struct ComposableAppExample {
pub common: Option<Example>,
pub components: Vec<Example>,
}
Fields§
§common: Option<Example>
§components: Vec<Example>
Trait Implementations§
Source§impl Debug for ComposableAppExample
impl Debug for ComposableAppExample
Source§impl Default for ComposableAppExample
impl Default for ComposableAppExample
Source§fn default() -> ComposableAppExample
fn default() -> ComposableAppExample
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ComposableAppExample
impl RefUnwindSafe for ComposableAppExample
impl Send for ComposableAppExample
impl Sync for ComposableAppExample
impl Unpin for ComposableAppExample
impl UnwindSafe for ComposableAppExample
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more