pub struct InputTaskLog {
pub message: String,
pub start_date: Option<Option<i64>>,
pub include_in_timeline: Option<Option<bool>>,
}Fields§
§message: String§start_date: Option<Option<i64>>§include_in_timeline: Option<Option<bool>>Implementations§
Source§impl InputTaskLog
impl InputTaskLog
pub fn new(message: String) -> InputTaskLog
Trait Implementations§
Source§impl Clone for InputTaskLog
impl Clone for InputTaskLog
Source§fn clone(&self) -> InputTaskLog
fn clone(&self) -> InputTaskLog
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 InputTaskLog
impl Debug for InputTaskLog
Source§impl Default for InputTaskLog
impl Default for InputTaskLog
Source§fn default() -> InputTaskLog
fn default() -> InputTaskLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputTaskLog
impl<'de> Deserialize<'de> for InputTaskLog
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 InputTaskLog
impl PartialEq for InputTaskLog
Source§impl Serialize for InputTaskLog
impl Serialize for InputTaskLog
impl StructuralPartialEq for InputTaskLog
Auto Trait Implementations§
impl Freeze for InputTaskLog
impl RefUnwindSafe for InputTaskLog
impl Send for InputTaskLog
impl Sync for InputTaskLog
impl Unpin for InputTaskLog
impl UnwindSafe for InputTaskLog
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