pub struct StepList {
pub data: Option<Vec<Step>>,
}Fields§
§data: Option<Vec<Step>>Data is every step of the sequence, idx ascending — the order they send in. It is not paged: a sequence’s steps are a handful, and a partial list would misstate the drip. An empty array for a sequence with no messages yet, which enrolls fine and completes immediately.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepList
impl<'de> Deserialize<'de> for StepList
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
impl StructuralPartialEq for StepList
Auto Trait Implementations§
impl Freeze for StepList
impl RefUnwindSafe for StepList
impl Send for StepList
impl Sync for StepList
impl Unpin for StepList
impl UnsafeUnpin for StepList
impl UnwindSafe for StepList
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