pub struct Some { /* private fields */ }
Expand description
A Some is a visual representation of an expression where at least one of the
satisfies
needs to be true for it to return true.
Implementations§
Source§impl Some
impl Some
pub fn iterator_variable(&self) -> &String
pub fn in_expression(&self) -> &TypedChildExpression
pub fn satisfies_expression(&self) -> &ChildExpression
Trait Implementations§
Source§impl DmnElement for Some
impl DmnElement for Some
Source§fn model_name(&self) -> &str
fn model_name(&self) -> &str
Name of the model the element was defined in.
Source§fn id(&self) -> &String
fn id(&self) -> &String
Returns a reference to identifier for this DmnElement.
This identifier SHALL be unique within its containing Definitions element.
Source§fn opt_id(&self) -> Option<&String>
fn opt_id(&self) -> Option<&String>
Returns a reference to optional identifier for this DmnElement.
Source§fn description(&self) -> &Option<String>
fn description(&self) -> &Option<String>
Returns reference to optional description of this DmnElement.
Source§fn label(&self) -> &Option<String>
fn label(&self) -> &Option<String>
Returns reference to optional alternative short description of this DmnElement.
Source§fn extension_elements(&self) -> &Vec<ExtensionElement>
fn extension_elements(&self) -> &Vec<ExtensionElement>
Returns reference to attached additional elements to any DmnElement.
Source§fn extension_attributes(&self) -> &Vec<ExtensionAttribute>
fn extension_attributes(&self) -> &Vec<ExtensionAttribute>
Returns reference to attached named extended attributes and model associations to any DmnElement.
Source§impl Expression for Some
impl Expression for Some
impl StructuralPartialEq for Some
Auto Trait Implementations§
impl Freeze for Some
impl RefUnwindSafe for Some
impl Send for Some
impl Sync for Some
impl Unpin for Some
impl UnwindSafe for Some
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