pub struct ReactiveListOptions {
pub name: Option<String>,
pub graph: Option<Graph>,
pub max_size: Option<usize>,
}Expand description
ReactiveListOptions data container.
Fields§
§name: Option<String>name field for name.
graph: Option<Graph>graph field for graph.
max_size: Option<usize>max_size field for max size.
Implementations§
Trait Implementations§
Source§impl Clone for ReactiveListOptions
impl Clone for ReactiveListOptions
Source§fn clone(&self) -> ReactiveListOptions
fn clone(&self) -> ReactiveListOptions
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 moreSource§impl Debug for ReactiveListOptions
impl Debug for ReactiveListOptions
Source§impl Default for ReactiveListOptions
impl Default for ReactiveListOptions
Source§fn default() -> ReactiveListOptions
fn default() -> ReactiveListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReactiveListOptions
impl !RefUnwindSafe for ReactiveListOptions
impl !Send for ReactiveListOptions
impl !Sync for ReactiveListOptions
impl Unpin for ReactiveListOptions
impl UnsafeUnpin for ReactiveListOptions
impl !UnwindSafe for ReactiveListOptions
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