pub struct FavoriteUpdateInput {
pub sort_order: Option<f64>,
pub parent_id: Option<String>,
pub folder_name: Option<String>,
}Fields§
§sort_order: Option<f64>The position of the item in the favorites list.
parent_id: Option<String>The identifier (in UUID v4 format) of the folder to move the favorite under.
folder_name: Option<String>The name of the favorite folder.
Trait Implementations§
Source§impl Clone for FavoriteUpdateInput
impl Clone for FavoriteUpdateInput
Source§fn clone(&self) -> FavoriteUpdateInput
fn clone(&self) -> FavoriteUpdateInput
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 FavoriteUpdateInput
impl Debug for FavoriteUpdateInput
Source§impl Default for FavoriteUpdateInput
impl Default for FavoriteUpdateInput
Source§fn default() -> FavoriteUpdateInput
fn default() -> FavoriteUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FavoriteUpdateInput
impl<'de> Deserialize<'de> for FavoriteUpdateInput
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 FavoriteUpdateInput
impl RefUnwindSafe for FavoriteUpdateInput
impl Send for FavoriteUpdateInput
impl Sync for FavoriteUpdateInput
impl Unpin for FavoriteUpdateInput
impl UnwindSafe for FavoriteUpdateInput
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