pub struct LogsArgs {
pub run: String,
pub stage: Option<String>,
pub tail: Option<u32>,
pub after: Option<u64>,
}Expand description
A cursor-paginated read of one run’s captured output. stage narrows the
page to a single flow stage, tail keeps the last N matching entries
instead of the first N, and after resumes from a previously returned
cursor so a follower streams without replaying what it has seen.
Fields§
§run: String§stage: Option<String>§tail: Option<u32>§after: Option<u64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LogsArgs
impl<'de> Deserialize<'de> for LogsArgs
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 Eq for LogsArgs
impl StructuralPartialEq for LogsArgs
Auto Trait Implementations§
impl Freeze for LogsArgs
impl RefUnwindSafe for LogsArgs
impl Send for LogsArgs
impl Sync for LogsArgs
impl Unpin for LogsArgs
impl UnsafeUnpin for LogsArgs
impl UnwindSafe for LogsArgs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.