pub enum CustomAttributeOp {
UnregisteredInGit,
PresentInGitOnly,
DeprecationToggled {
from: bool,
to: bool,
},
MetadataOnly,
Unchanged,
}Variants§
UnregisteredInGit
Present in Braze but missing from local registry. Action: prompt export.
PresentInGitOnly
Present in local registry but not in Braze. Often a typo.
DeprecationToggled
deprecated flag changed. The only mutation apply actually performs.
MetadataOnly
Only the description changed. No API to update it, so apply is a no-op.
Unchanged
Trait Implementations§
Source§impl Clone for CustomAttributeOp
impl Clone for CustomAttributeOp
Source§fn clone(&self) -> CustomAttributeOp
fn clone(&self) -> CustomAttributeOp
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 CustomAttributeOp
impl RefUnwindSafe for CustomAttributeOp
impl Send for CustomAttributeOp
impl Sync for CustomAttributeOp
impl Unpin for CustomAttributeOp
impl UnsafeUnpin for CustomAttributeOp
impl UnwindSafe for CustomAttributeOp
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