pub enum GetTaskLogByIdResponse {
InvalidHandle(GeneralError),
TheLogFetched(Vec<GetTaskLogResponseInner>),
}
Variants§
InvalidHandle(GeneralError)
Invalid handle
TheLogFetched(Vec<GetTaskLogResponseInner>)
The log fetched
Trait Implementations§
Source§impl Debug for GetTaskLogByIdResponse
impl Debug for GetTaskLogByIdResponse
Source§impl<'de> Deserialize<'de> for GetTaskLogByIdResponse
impl<'de> Deserialize<'de> for GetTaskLogByIdResponse
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 GetTaskLogByIdResponse
impl PartialEq for GetTaskLogByIdResponse
Source§fn eq(&self, other: &GetTaskLogByIdResponse) -> bool
fn eq(&self, other: &GetTaskLogByIdResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for GetTaskLogByIdResponse
impl Serialize for GetTaskLogByIdResponse
impl StructuralPartialEq for GetTaskLogByIdResponse
Auto Trait Implementations§
impl Freeze for GetTaskLogByIdResponse
impl RefUnwindSafe for GetTaskLogByIdResponse
impl Send for GetTaskLogByIdResponse
impl Sync for GetTaskLogByIdResponse
impl Unpin for GetTaskLogByIdResponse
impl UnwindSafe for GetTaskLogByIdResponse
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