pub struct Note {
pub id: String,
pub description: String,
pub show_to_requester: bool,
pub mark_first_response: bool,
pub notify_technician: bool,
pub add_to_linked_requests: bool,
pub created_time: Option<TimeEntry>,
pub created_by: Option<UserInfo>,
pub last_updated_time: Option<TimeEntry>,
}Fields§
§id: String§description: String§show_to_requester: bool§mark_first_response: bool§notify_technician: bool§add_to_linked_requests: bool§created_time: Option<TimeEntry>§created_by: Option<UserInfo>§last_updated_time: Option<TimeEntry>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Note
impl<'de> Deserialize<'de> for Note
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
Auto Trait Implementations§
impl Freeze for Note
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
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