pub struct DomainModification {
pub domain_name: String,
pub old_cardinality: usize,
pub new_cardinality: usize,
pub description_changed: bool,
pub metadata_changed: bool,
}Expand description
Modification details for a domain.
Fields§
§domain_name: StringName of the modified domain.
old_cardinality: usizeOld cardinality.
new_cardinality: usizeNew cardinality.
description_changed: boolWhether description changed.
metadata_changed: boolWhether metadata changed.
Trait Implementations§
Source§impl Clone for DomainModification
impl Clone for DomainModification
Source§fn clone(&self) -> DomainModification
fn clone(&self) -> DomainModification
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 moreAuto Trait Implementations§
impl Freeze for DomainModification
impl RefUnwindSafe for DomainModification
impl Send for DomainModification
impl Sync for DomainModification
impl Unpin for DomainModification
impl UnwindSafe for DomainModification
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