pub struct And {
pub all_of: Vec<Recognition>,
pub box_index: i32,
}Expand description
Logical AND recognition - all sub-recognitions must match.
Combines multiple recognitions; succeeds only when all match.
Fields§
§all_of: Vec<Recognition>Sub-recognition list. All must match. Required.
box_index: i32Which sub-recognition’s bounding box to use. Default: 0.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for And
impl<'de> Deserialize<'de> for And
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 And
impl RefUnwindSafe for And
impl Send for And
impl Sync for And
impl Unpin for And
impl UnwindSafe for And
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