pub struct ChangedWorklog {
pub worklog_id: Option<i64>,
pub updated_time: Option<i64>,
pub properties: Option<Vec<EntityProperty>>,
}
Expand description
ChangedWorklog : Details of a changed worklog.
Fields§
§worklog_id: Option<i64>
The ID of the worklog.
updated_time: Option<i64>
The datetime of the change.
properties: Option<Vec<EntityProperty>>
Details of properties associated with the change.
Implementations§
Source§impl ChangedWorklog
impl ChangedWorklog
Sourcepub fn new() -> ChangedWorklog
pub fn new() -> ChangedWorklog
Details of a changed worklog.
Trait Implementations§
Source§impl Clone for ChangedWorklog
impl Clone for ChangedWorklog
Source§fn clone(&self) -> ChangedWorklog
fn clone(&self) -> ChangedWorklog
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 ChangedWorklog
impl Debug for ChangedWorklog
Source§impl Default for ChangedWorklog
impl Default for ChangedWorklog
Source§fn default() -> ChangedWorklog
fn default() -> ChangedWorklog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChangedWorklog
impl<'de> Deserialize<'de> for ChangedWorklog
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 ChangedWorklog
impl PartialEq for ChangedWorklog
Source§impl Serialize for ChangedWorklog
impl Serialize for ChangedWorklog
impl StructuralPartialEq for ChangedWorklog
Auto Trait Implementations§
impl Freeze for ChangedWorklog
impl RefUnwindSafe for ChangedWorklog
impl Send for ChangedWorklog
impl Sync for ChangedWorklog
impl Unpin for ChangedWorklog
impl UnwindSafe for ChangedWorklog
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