pub enum ApplyStatementsOutcome {
Previewed(Vec<StatementResult>),
Applied(Vec<StatementResult>),
NotApplied(Vec<StatementResult>),
}Variants§
Implementations§
Source§impl ApplyStatementsOutcome
impl ApplyStatementsOutcome
pub fn results(&self) -> &[StatementResult]
pub fn was_applied(&self) -> bool
pub fn was_rejected(&self) -> bool
Trait Implementations§
Source§impl Clone for ApplyStatementsOutcome
impl Clone for ApplyStatementsOutcome
Source§fn clone(&self) -> ApplyStatementsOutcome
fn clone(&self) -> ApplyStatementsOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApplyStatementsOutcome
impl Debug for ApplyStatementsOutcome
impl Eq for ApplyStatementsOutcome
Source§impl PartialEq for ApplyStatementsOutcome
impl PartialEq for ApplyStatementsOutcome
Source§impl Serialize for ApplyStatementsOutcome
impl Serialize for ApplyStatementsOutcome
impl StructuralPartialEq for ApplyStatementsOutcome
Auto Trait Implementations§
impl Freeze for ApplyStatementsOutcome
impl RefUnwindSafe for ApplyStatementsOutcome
impl Send for ApplyStatementsOutcome
impl Sync for ApplyStatementsOutcome
impl Unpin for ApplyStatementsOutcome
impl UnsafeUnpin for ApplyStatementsOutcome
impl UnwindSafe for ApplyStatementsOutcome
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.