pub struct Rename {
pub new_title: Option<String>,
pub old_title: Option<String>,
}Expand description
Contains information about a renametype event.
This type is not used in any activity, and only used as part of another schema.
Fields§
§new_title: Option<String>The new title.
old_title: Option<String>The old title.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Rename
impl<'de> Deserialize<'de> for Rename
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
impl Part for Rename
Auto Trait Implementations§
impl Freeze for Rename
impl RefUnwindSafe for Rename
impl Send for Rename
impl Sync for Rename
impl Unpin for Rename
impl UnwindSafe for Rename
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