pub struct ResultList<'a>(pub Vec<Vec<Action<'a>>>);
Tuple Fields§
§0: Vec<Vec<Action<'a>>>
Implementations§
Source§impl<'a> ResultList<'a>
impl<'a> ResultList<'a>
pub fn iter(&self) -> impl Iterator<Item = &Action<'_>> + '_
Sourcepub fn kll_core_guide(&self, layouts: &mut Layouts) -> Vec<u8> ⓘ
pub fn kll_core_guide(&self, layouts: &mut Layouts) -> Vec<u8> ⓘ
Converts the ResultList into a kll-core result 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_capability_guide(
&self,
layouts: &mut Layouts,
) -> ResultCapabilitiesList
pub fn kll_core_capability_guide( &self, layouts: &mut Layouts, ) -> ResultCapabilitiesList
Converts the ResultList into a kll-core result capability guide This type is safely hashable
Trait Implementations§
Source§impl<'a> Clone for ResultList<'a>
impl<'a> Clone for ResultList<'a>
Source§fn clone(&self) -> ResultList<'a>
fn clone(&self) -> ResultList<'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 ResultList<'a>
impl<'a> Debug for ResultList<'a>
Auto Trait Implementations§
impl<'a> Freeze for ResultList<'a>
impl<'a> RefUnwindSafe for ResultList<'a>
impl<'a> Send for ResultList<'a>
impl<'a> Sync for ResultList<'a>
impl<'a> Unpin for ResultList<'a>
impl<'a> UnwindSafe for ResultList<'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