#[repr(i32)]pub enum ListOrderBy {
ORDER_BY_UNSPECIFIED = 0,
ORDER_BY_LAST_ACTIVITY = 1,
ORDER_BY_STARTED_AT = 2,
}Expand description
ListOrderBy selects which timestamp ListFlows uses for ordering and cursors.
Variants§
ORDER_BY_UNSPECIFIED = 0
Ordering timestamp was not specified; server defaults to last activity.
ORDER_BY_LAST_ACTIVITY = 1
Order by the latest lifecycle activity timestamp.
ORDER_BY_STARTED_AT = 2
Order by the first observed business timestamp. Rows without a start time use their terminal timestamp when available.
Implementations§
Source§impl ListOrderBy
impl ListOrderBy
Sourcepub const OrderByUnspecified: Self = Self::ORDER_BY_UNSPECIFIED
pub const OrderByUnspecified: Self = Self::ORDER_BY_UNSPECIFIED
Idiomatic alias for Self::ORDER_BY_UNSPECIFIED; Debug prints the variant name.
Sourcepub const OrderByLastActivity: Self = Self::ORDER_BY_LAST_ACTIVITY
pub const OrderByLastActivity: Self = Self::ORDER_BY_LAST_ACTIVITY
Idiomatic alias for Self::ORDER_BY_LAST_ACTIVITY; Debug prints the variant name.
Sourcepub const OrderByStartedAt: Self = Self::ORDER_BY_STARTED_AT
pub const OrderByStartedAt: Self = Self::ORDER_BY_STARTED_AT
Idiomatic alias for Self::ORDER_BY_STARTED_AT; Debug prints the variant name.
Trait Implementations§
Source§impl Clone for ListOrderBy
impl Clone for ListOrderBy
Source§fn clone(&self) -> ListOrderBy
fn clone(&self) -> ListOrderBy
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 moreimpl Copy for ListOrderBy
Source§impl Debug for ListOrderBy
impl Debug for ListOrderBy
Source§impl Default for ListOrderBy
impl Default for ListOrderBy
Source§impl<'de> Deserialize<'de> for ListOrderBy
impl<'de> Deserialize<'de> for ListOrderBy
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Enumeration for ListOrderBy
impl Enumeration for ListOrderBy
Source§fn proto_name(&self) -> &'static str
fn proto_name(&self) -> &'static str
The name of this enum variant as it appears in the
.proto file.impl Eq for ListOrderBy
Source§impl Hash for ListOrderBy
impl Hash for ListOrderBy
Source§impl PartialEq for ListOrderBy
impl PartialEq for ListOrderBy
Source§impl ProtoElemJson for ListOrderBy
impl ProtoElemJson for ListOrderBy
Source§fn serialize_proto_json<S: Serializer>(
v: &Self,
s: S,
) -> Result<S::Ok, S::Error>
fn serialize_proto_json<S: Serializer>( v: &Self, s: S, ) -> Result<S::Ok, S::Error>
Serialize this value with proto3 JSON semantics.
Source§fn deserialize_proto_json<'de, D: Deserializer<'de>>(
d: D,
) -> Result<Self, D::Error>
fn deserialize_proto_json<'de, D: Deserializer<'de>>( d: D, ) -> Result<Self, D::Error>
Deserialize a value with proto3 JSON semantics.
Source§impl Serialize for ListOrderBy
impl Serialize for ListOrderBy
impl StructuralPartialEq for ListOrderBy
Auto Trait Implementations§
impl Freeze for ListOrderBy
impl RefUnwindSafe for ListOrderBy
impl Send for ListOrderBy
impl Sync for ListOrderBy
impl Unpin for ListOrderBy
impl UnsafeUnpin for ListOrderBy
impl UnwindSafe for ListOrderBy
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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§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.