pub struct ProgramDiff { /* private fields */ }Expand description
Summary of changes in the program between checkpointed and new versions.
Implementations§
Source§impl ProgramDiff
impl ProgramDiff
pub fn new() -> Self
pub fn with_added_tables(self, tables: Vec<String>) -> Self
pub fn with_removed_tables(self, tables: Vec<String>) -> Self
pub fn with_modified_tables(self, tables: Vec<String>) -> Self
pub fn with_added_views(self, views: Vec<String>) -> Self
pub fn with_removed_views(self, views: Vec<String>) -> Self
pub fn with_modified_views(self, views: Vec<String>) -> Self
pub fn added_tables(&self) -> &Vec<String>
pub fn removed_tables(&self) -> &Vec<String>
pub fn modified_tables(&self) -> &Vec<String>
pub fn added_views(&self) -> &Vec<String>
pub fn removed_views(&self) -> &Vec<String>
pub fn modified_views(&self) -> &Vec<String>
pub fn is_empty(&self) -> bool
pub fn is_affected_relation(&self, relation_name: &str) -> bool
Trait Implementations§
Source§impl Clone for ProgramDiff
impl Clone for ProgramDiff
Source§fn clone(&self) -> ProgramDiff
fn clone(&self) -> ProgramDiff
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 ProgramDiff
impl Debug for ProgramDiff
Source§impl Default for ProgramDiff
impl Default for ProgramDiff
Source§fn default() -> ProgramDiff
fn default() -> ProgramDiff
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProgramDiff
impl<'de> Deserialize<'de> for ProgramDiff
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
Source§impl Display for ProgramDiff
impl Display for ProgramDiff
Source§impl PartialEq for ProgramDiff
impl PartialEq for ProgramDiff
Source§impl Serialize for ProgramDiff
impl Serialize for ProgramDiff
Source§impl<'__s> ToSchema<'__s> for ProgramDiff
impl<'__s> ToSchema<'__s> for ProgramDiff
impl Eq for ProgramDiff
impl StructuralPartialEq for ProgramDiff
Auto Trait Implementations§
impl Freeze for ProgramDiff
impl RefUnwindSafe for ProgramDiff
impl Send for ProgramDiff
impl Sync for ProgramDiff
impl Unpin for ProgramDiff
impl UnwindSafe for ProgramDiff
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.