pub struct ContentBlockDiff {
pub name: String,
pub op: DiffOp<ContentBlock>,
pub text_diff: Option<TextDiffSummary>,
pub orphan: bool,
}Fields§
§name: String§op: DiffOp<ContentBlock>§text_diff: Option<TextDiffSummary>§orphan: boolTrue when present in Braze but missing from Git.
Implementations§
Trait Implementations§
Source§impl Clone for ContentBlockDiff
impl Clone for ContentBlockDiff
Source§fn clone(&self) -> ContentBlockDiff
fn clone(&self) -> ContentBlockDiff
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 ContentBlockDiff
impl RefUnwindSafe for ContentBlockDiff
impl Send for ContentBlockDiff
impl Sync for ContentBlockDiff
impl Unpin for ContentBlockDiff
impl UnsafeUnpin for ContentBlockDiff
impl UnwindSafe for ContentBlockDiff
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