pub enum PropagationRule {
ForeignKey {
fk_column: String,
referenced_table: String,
referenced_column: String,
trigger_state: String,
target_state: String,
max_depth: u32,
abort_on_failure: bool,
},
Edge {
edge_type: String,
direction: Direction,
trigger_state: String,
target_state: String,
max_depth: u32,
abort_on_failure: bool,
},
VectorExclusion {
trigger_state: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for PropagationRule
impl Clone for PropagationRule
Source§fn clone(&self) -> PropagationRule
fn clone(&self) -> PropagationRule
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 moreSource§impl Debug for PropagationRule
impl Debug for PropagationRule
Source§impl<'de> Deserialize<'de> for PropagationRule
impl<'de> Deserialize<'de> for PropagationRule
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PropagationRule
impl RefUnwindSafe for PropagationRule
impl Send for PropagationRule
impl Sync for PropagationRule
impl Unpin for PropagationRule
impl UnsafeUnpin for PropagationRule
impl UnwindSafe for PropagationRule
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