pub struct SessionFactoryGetRunProgressResult {
pub has_more_newer: bool,
pub has_more_older: bool,
pub newest_seq: Option<i64>,
pub oldest_seq: Option<i64>,
pub records: Vec<FactoryProgressLine>,
pub revision: i64,
}Expand description
A bidirectional page of factory progress.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§has_more_newer: bool§has_more_older: bool§newest_seq: Option<i64>§oldest_seq: Option<i64>§records: Vec<FactoryProgressLine>§revision: i64Run revision reflected by this page.
Trait Implementations§
Source§impl Clone for SessionFactoryGetRunProgressResult
impl Clone for SessionFactoryGetRunProgressResult
Source§fn clone(&self) -> SessionFactoryGetRunProgressResult
fn clone(&self) -> SessionFactoryGetRunProgressResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for SessionFactoryGetRunProgressResult
impl Default for SessionFactoryGetRunProgressResult
Source§fn default() -> SessionFactoryGetRunProgressResult
fn default() -> SessionFactoryGetRunProgressResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionFactoryGetRunProgressResult
impl<'de> Deserialize<'de> for SessionFactoryGetRunProgressResult
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 SessionFactoryGetRunProgressResult
impl RefUnwindSafe for SessionFactoryGetRunProgressResult
impl Send for SessionFactoryGetRunProgressResult
impl Sync for SessionFactoryGetRunProgressResult
impl Unpin for SessionFactoryGetRunProgressResult
impl UnsafeUnpin for SessionFactoryGetRunProgressResult
impl UnwindSafe for SessionFactoryGetRunProgressResult
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