pub struct UpdateInput {
pub id: String,
pub name: String,
pub is_public: bool,
}
Fields§
§id: String
§name: String
§is_public: bool
Implementations§
Source§impl UpdateInput
impl UpdateInput
Trait Implementations§
Source§impl Clone for UpdateInput
impl Clone for UpdateInput
Source§fn clone(&self) -> UpdateInput
fn clone(&self) -> UpdateInput
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 UpdateInput
impl Debug for UpdateInput
Source§impl Default for UpdateInput
impl Default for UpdateInput
Source§fn default() -> UpdateInput
fn default() -> UpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateInput
impl<'de> Deserialize<'de> for UpdateInput
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 UpdateInput
impl PartialEq for UpdateInput
Source§impl Serialize for UpdateInput
impl Serialize for UpdateInput
impl StructuralPartialEq for UpdateInput
Auto Trait Implementations§
impl Freeze for UpdateInput
impl RefUnwindSafe for UpdateInput
impl Send for UpdateInput
impl Sync for UpdateInput
impl Unpin for UpdateInput
impl UnwindSafe for UpdateInput
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