pub struct AssertStatement {
pub condition: Expr,
pub message: Option<String>,
}Expand description
Assert statement for simple assertions
Fields§
§condition: ExprCondition to assert
message: Option<String>Optional failure message
Trait Implementations§
Source§impl Clone for AssertStatement
impl Clone for AssertStatement
Source§fn clone(&self) -> AssertStatement
fn clone(&self) -> AssertStatement
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 AssertStatement
impl Debug for AssertStatement
Source§impl<'de> Deserialize<'de> for AssertStatement
impl<'de> Deserialize<'de> for AssertStatement
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 AssertStatement
impl RefUnwindSafe for AssertStatement
impl Send for AssertStatement
impl Sync for AssertStatement
impl Unpin for AssertStatement
impl UnsafeUnpin for AssertStatement
impl UnwindSafe for AssertStatement
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