Struct fiberplane_models::views::UpdateView
source · #[non_exhaustive]pub struct UpdateView {
pub display_name: Option<String>,
pub description: Option<Option<String>>,
pub color: Option<i16>,
pub labels: Option<Vec<Label>>,
pub relative_time: Option<Option<RelativeTime>>,
pub sort_by: Option<Option<NotebookSortFields>>,
pub sort_direction: Option<Option<SortDirection>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.display_name: Option<String>§description: Option<Option<String>>§color: Option<i16>§labels: Option<Vec<Label>>§relative_time: Option<Option<RelativeTime>>§sort_by: Option<Option<NotebookSortFields>>§sort_direction: Option<Option<SortDirection>>Implementations§
source§impl UpdateView
impl UpdateView
sourcepub fn builder() -> UpdateViewBuilder<((), (), (), (), (), (), ())>
pub fn builder() -> UpdateViewBuilder<((), (), (), (), (), (), ())>
Create a builder for building UpdateView.
On the builder, call .display_name(...)(optional), .description(...)(optional), .color(...)(optional), .labels(...)(optional), .relative_time(...)(optional), .sort_by(...)(optional), .sort_direction(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of UpdateView.
Trait Implementations§
source§impl Clone for UpdateView
impl Clone for UpdateView
source§fn clone(&self) -> UpdateView
fn clone(&self) -> UpdateView
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 Debug for UpdateView
impl Debug for UpdateView
source§impl Default for UpdateView
impl Default for UpdateView
source§fn default() -> UpdateView
fn default() -> UpdateView
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UpdateView
impl<'de> Deserialize<'de> for UpdateView
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for UpdateView
impl PartialEq for UpdateView
source§fn eq(&self, other: &UpdateView) -> bool
fn eq(&self, other: &UpdateView) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for UpdateView
impl Serialize for UpdateView
impl Eq for UpdateView
impl StructuralPartialEq for UpdateView
Auto Trait Implementations§
impl Freeze for UpdateView
impl RefUnwindSafe for UpdateView
impl Send for UpdateView
impl Sync for UpdateView
impl Unpin for UpdateView
impl UnwindSafe for UpdateView
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