pub struct SingleRowProps<__ImplTrait0: Into<String>, __ImplTrait1: Into<String>> {
pub id: __ImplTrait0,
pub label: __ImplTrait1,
pub read: ReadSignal<String>,
pub write: WriteSignal<String>,
}Expand description
Props for the SingleRow component.
§Required Props
- id: [
__ImplTrait0] - label: [
__ImplTrait1] - read:
ReadSignal<String> - write:
WriteSignal<String>
Fields§
§id: __ImplTrait0§label: __ImplTrait1§read: ReadSignal<String>§write: WriteSignal<String>Implementations§
Source§impl<__ImplTrait0: Into<String>, __ImplTrait1: Into<String>> SingleRowProps<__ImplTrait0, __ImplTrait1>
impl<__ImplTrait0: Into<String>, __ImplTrait1: Into<String>> SingleRowProps<__ImplTrait0, __ImplTrait1>
Sourcepub fn builder() -> SingleRowPropsBuilder<__ImplTrait0, __ImplTrait1, ((), (), (), ())>
pub fn builder() -> SingleRowPropsBuilder<__ImplTrait0, __ImplTrait1, ((), (), (), ())>
Create a builder for building SingleRowProps.
On the builder, call .id(...), .label(...), .read(...), .write(...) to set the values of the fields.
Finally, call .build() to create the instance of SingleRowProps.
Trait Implementations§
Auto Trait Implementations§
impl<__ImplTrait0, __ImplTrait1> Freeze for SingleRowProps<__ImplTrait0, __ImplTrait1>
impl<__ImplTrait0, __ImplTrait1> RefUnwindSafe for SingleRowProps<__ImplTrait0, __ImplTrait1>where
__ImplTrait0: RefUnwindSafe,
__ImplTrait1: RefUnwindSafe,
impl<__ImplTrait0, __ImplTrait1> Send for SingleRowProps<__ImplTrait0, __ImplTrait1>
impl<__ImplTrait0, __ImplTrait1> Sync for SingleRowProps<__ImplTrait0, __ImplTrait1>
impl<__ImplTrait0, __ImplTrait1> Unpin for SingleRowProps<__ImplTrait0, __ImplTrait1>
impl<__ImplTrait0, __ImplTrait1> UnsafeUnpin for SingleRowProps<__ImplTrait0, __ImplTrait1>where
__ImplTrait0: UnsafeUnpin,
__ImplTrait1: UnsafeUnpin,
impl<__ImplTrait0, __ImplTrait1> UnwindSafe for SingleRowProps<__ImplTrait0, __ImplTrait1>where
__ImplTrait0: UnwindSafe,
__ImplTrait1: UnwindSafe,
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 moreSource§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.