pub struct CustomViewSortInput {
pub name: Option<Box<CustomViewNameSort>>,
pub created_at: Option<Box<CustomViewCreatedAtSort>>,
pub shared: Option<Box<CustomViewSharedSort>>,
pub updated_at: Option<Box<CustomViewUpdatedAtSort>>,
}Fields§
§name: Option<Box<CustomViewNameSort>>Sort by custom view name.
created_at: Option<Box<CustomViewCreatedAtSort>>Sort by custom view creation date.
Sort by custom view shared status.
updated_at: Option<Box<CustomViewUpdatedAtSort>>Sort by custom view update date.
Trait Implementations§
Source§impl Clone for CustomViewSortInput
impl Clone for CustomViewSortInput
Source§fn clone(&self) -> CustomViewSortInput
fn clone(&self) -> CustomViewSortInput
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 CustomViewSortInput
impl Debug for CustomViewSortInput
Source§impl Default for CustomViewSortInput
impl Default for CustomViewSortInput
Source§fn default() -> CustomViewSortInput
fn default() -> CustomViewSortInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomViewSortInput
impl<'de> Deserialize<'de> for CustomViewSortInput
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
Auto Trait Implementations§
impl Freeze for CustomViewSortInput
impl RefUnwindSafe for CustomViewSortInput
impl Send for CustomViewSortInput
impl Sync for CustomViewSortInput
impl Unpin for CustomViewSortInput
impl UnwindSafe for CustomViewSortInput
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