Struct fiberplane_models::notebooks::UpdateTemplate
source · #[non_exhaustive]pub struct UpdateTemplate {
pub description: Option<String>,
pub body: Option<String>,
}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.description: Option<String>§body: Option<String>Implementations§
Trait Implementations§
source§impl Clone for UpdateTemplate
impl Clone for UpdateTemplate
source§fn clone(&self) -> UpdateTemplate
fn clone(&self) -> UpdateTemplate
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 UpdateTemplate
impl Debug for UpdateTemplate
source§impl Default for UpdateTemplate
impl Default for UpdateTemplate
source§fn default() -> UpdateTemplate
fn default() -> UpdateTemplate
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UpdateTemplate
impl<'de> Deserialize<'de> for UpdateTemplate
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 UpdateTemplate
impl PartialEq for UpdateTemplate
source§fn eq(&self, other: &UpdateTemplate) -> bool
fn eq(&self, other: &UpdateTemplate) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for UpdateTemplate
impl Serialize for UpdateTemplate
impl Eq for UpdateTemplate
impl StructuralPartialEq for UpdateTemplate
Auto Trait Implementations§
impl Freeze for UpdateTemplate
impl RefUnwindSafe for UpdateTemplate
impl Send for UpdateTemplate
impl Sync for UpdateTemplate
impl Unpin for UpdateTemplate
impl UnwindSafe for UpdateTemplate
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