pub enum GetEarliestTimestampResponse {
ApiError(Box<ApiError>),
EarliestTimestamp(Box<EarliestTimestamp>),
}Variants§
Trait Implementations§
Source§impl Clone for GetEarliestTimestampResponse
impl Clone for GetEarliestTimestampResponse
Source§fn clone(&self) -> GetEarliestTimestampResponse
fn clone(&self) -> GetEarliestTimestampResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetEarliestTimestampResponse
impl Debug for GetEarliestTimestampResponse
Source§impl<'de> Deserialize<'de> for GetEarliestTimestampResponse
impl<'de> Deserialize<'de> for GetEarliestTimestampResponse
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
Source§impl PartialEq for GetEarliestTimestampResponse
impl PartialEq for GetEarliestTimestampResponse
Source§fn eq(&self, other: &GetEarliestTimestampResponse) -> bool
fn eq(&self, other: &GetEarliestTimestampResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetEarliestTimestampResponse
Auto Trait Implementations§
impl Freeze for GetEarliestTimestampResponse
impl RefUnwindSafe for GetEarliestTimestampResponse
impl Send for GetEarliestTimestampResponse
impl Sync for GetEarliestTimestampResponse
impl Unpin for GetEarliestTimestampResponse
impl UnwindSafe for GetEarliestTimestampResponse
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