pub struct Step<'a> {
pub action: &'a str,
pub objects: Vec<&'a str>,
}Expand description
Denotes a single step in a plan
Fields§
§action: &'a str§objects: Vec<&'a str>Trait Implementations§
impl<'a> Eq for Step<'a>
impl<'a> StructuralPartialEq for Step<'a>
Auto Trait Implementations§
impl<'a> Freeze for Step<'a>
impl<'a> RefUnwindSafe for Step<'a>
impl<'a> Send for Step<'a>
impl<'a> Sync for Step<'a>
impl<'a> Unpin for Step<'a>
impl<'a> UnwindSafe for Step<'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