pub struct UANodeSetChangesStatus {
pub nodes_to_add: Option<NodeSetStatusList>,
pub references_to_add: Option<NodeSetStatusList>,
pub nodes_to_delete: Option<NodeSetStatusList>,
pub references_to_delete: Option<NodeSetStatusList>,
pub last_modified: Option<DateTime<Utc>>,
pub transaction_id: String,
}Expand description
Status of a node set change.
Fields§
§nodes_to_add: Option<NodeSetStatusList>Status of nodes being added.
references_to_add: Option<NodeSetStatusList>Status of references being added.
nodes_to_delete: Option<NodeSetStatusList>Status of nodes being deleted.
references_to_delete: Option<NodeSetStatusList>Status of references being deleted.
last_modified: Option<DateTime<Utc>>Last modified time.
transaction_id: StringChange transaction ID. Used to identify this change.
Trait Implementations§
Source§impl Debug for UANodeSetChangesStatus
impl Debug for UANodeSetChangesStatus
Auto Trait Implementations§
impl Freeze for UANodeSetChangesStatus
impl RefUnwindSafe for UANodeSetChangesStatus
impl Send for UANodeSetChangesStatus
impl Sync for UANodeSetChangesStatus
impl Unpin for UANodeSetChangesStatus
impl UnwindSafe for UANodeSetChangesStatus
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