pub struct OutputTaskLog {
pub _id: String,
pub _type: String,
pub _created_by: String,
pub _created_at: i64,
pub _updated_by: Option<Option<String>>,
pub _updated_at: Option<Option<i64>>,
pub message: String,
pub date: i64,
pub owner: String,
pub attachments: Option<Option<Vec<OutputAttachment>>>,
pub include_in_timeline: Option<Option<bool>>,
pub extra_data: HashMap<String, Value>,
}Fields§
§_id: String§_type: String§_created_by: String§_created_at: i64§_updated_by: Option<Option<String>>§_updated_at: Option<Option<i64>>§message: String§date: i64§owner: String§attachments: Option<Option<Vec<OutputAttachment>>>§include_in_timeline: Option<Option<bool>>§extra_data: HashMap<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for OutputTaskLog
impl Clone for OutputTaskLog
Source§fn clone(&self) -> OutputTaskLog
fn clone(&self) -> OutputTaskLog
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 OutputTaskLog
impl Debug for OutputTaskLog
Source§impl Default for OutputTaskLog
impl Default for OutputTaskLog
Source§fn default() -> OutputTaskLog
fn default() -> OutputTaskLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputTaskLog
impl<'de> Deserialize<'de> for OutputTaskLog
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 OutputTaskLog
impl PartialEq for OutputTaskLog
Source§impl Serialize for OutputTaskLog
impl Serialize for OutputTaskLog
impl StructuralPartialEq for OutputTaskLog
Auto Trait Implementations§
impl Freeze for OutputTaskLog
impl RefUnwindSafe for OutputTaskLog
impl Send for OutputTaskLog
impl Sync for OutputTaskLog
impl Unpin for OutputTaskLog
impl UnwindSafe for OutputTaskLog
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