pub struct TriggerList<'a>(pub Vec<Vec<Trigger<'a>>>);
Tuple Fields§
§0: Vec<Vec<Trigger<'a>>>
Implementations§
Source§impl<'a> TriggerList<'a>
impl<'a> TriggerList<'a>
pub fn iter(&self) -> impl Iterator<Item = &Trigger<'_>> + '_
Sourcepub fn kll_core_guide(&self) -> Vec<u8> ⓘ
pub fn kll_core_guide(&self) -> Vec<u8> ⓘ
Converts the TriggerList into a kll-core trigger guide NOTE: The result of this type is not safely hashable as the binary format can change due to internal rust behaviour. Please use kll_core_capability_guide instead.
Sourcepub fn kll_core_condition_guide(&self) -> TriggerConditionList
pub fn kll_core_condition_guide(&self) -> TriggerConditionList
Converts the TriggerList into a kll-core result capability guide This type is safely hashable
Trait Implementations§
Source§impl<'a> Clone for TriggerList<'a>
impl<'a> Clone for TriggerList<'a>
Source§fn clone(&self) -> TriggerList<'a>
fn clone(&self) -> TriggerList<'a>
Returns a copy 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<'a> Debug for TriggerList<'a>
impl<'a> Debug for TriggerList<'a>
Auto Trait Implementations§
impl<'a> Freeze for TriggerList<'a>
impl<'a> RefUnwindSafe for TriggerList<'a>
impl<'a> Send for TriggerList<'a>
impl<'a> Sync for TriggerList<'a>
impl<'a> Unpin for TriggerList<'a>
impl<'a> UnwindSafe for TriggerList<'a>
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