pub struct VerificationCaseUsage {
pub name: String,
pub type_name: Option<String>,
pub body: UseCaseDefBody,
}Expand description
Verification case usage: verification name (: type)? body.
Fields§
§name: String§type_name: Option<String>§body: UseCaseDefBodyTrait Implementations§
Source§impl Clone for VerificationCaseUsage
impl Clone for VerificationCaseUsage
Source§fn clone(&self) -> VerificationCaseUsage
fn clone(&self) -> VerificationCaseUsage
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 VerificationCaseUsage
impl Debug for VerificationCaseUsage
impl Eq for VerificationCaseUsage
Source§impl PartialEq for VerificationCaseUsage
impl PartialEq for VerificationCaseUsage
Source§fn eq(&self, other: &VerificationCaseUsage) -> bool
fn eq(&self, other: &VerificationCaseUsage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VerificationCaseUsage
Auto Trait Implementations§
impl Freeze for VerificationCaseUsage
impl RefUnwindSafe for VerificationCaseUsage
impl Send for VerificationCaseUsage
impl Sync for VerificationCaseUsage
impl Unpin for VerificationCaseUsage
impl UnsafeUnpin for VerificationCaseUsage
impl UnwindSafe for VerificationCaseUsage
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