pub struct UpdateSkill {
pub name: Option<String>,
pub description: Option<String>,
pub content: Option<String>,
pub tags: Option<Vec<String>>,
pub is_public: Option<bool>,
}Fields§
§name: Option<String>§description: Option<String>§content: Option<String>§is_public: Option<bool>Trait Implementations§
Source§impl Clone for UpdateSkill
impl Clone for UpdateSkill
Source§fn clone(&self) -> UpdateSkill
fn clone(&self) -> UpdateSkill
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 UpdateSkill
impl Debug for UpdateSkill
Source§impl<'de> Deserialize<'de> for UpdateSkill
impl<'de> Deserialize<'de> for UpdateSkill
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 UpdateSkill
impl RefUnwindSafe for UpdateSkill
impl Send for UpdateSkill
impl Sync for UpdateSkill
impl Unpin for UpdateSkill
impl UnsafeUnpin for UpdateSkill
impl UnwindSafe for UpdateSkill
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