pub struct ChangesInfoEventArgument {
pub modified: Option<String>,
pub added: Option<String>,
pub deleted: Option<String>,
}Expand description
The event argument contains changes.
Fields§
§modified: Option<String>Modified properties.
added: Option<String>Added properties.
deleted: Option<String>Deleted properties.
Trait Implementations§
Source§impl Debug for ChangesInfoEventArgument
impl Debug for ChangesInfoEventArgument
Source§impl VimObjectTrait for ChangesInfoEventArgument
impl VimObjectTrait for ChangesInfoEventArgument
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for ChangesInfoEventArgument
Auto Trait Implementations§
impl Freeze for ChangesInfoEventArgument
impl RefUnwindSafe for ChangesInfoEventArgument
impl Send for ChangesInfoEventArgument
impl Sync for ChangesInfoEventArgument
impl Unpin for ChangesInfoEventArgument
impl UnsafeUnpin for ChangesInfoEventArgument
impl UnwindSafe for ChangesInfoEventArgument
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