pub struct TagV2 {
pub id: String,
pub tag_type_code: Option<String>,
pub start_time: String,
pub end_time: Option<String>,
pub start_day: String,
pub end_day: Option<String>,
pub comment: Option<String>,
}
Fields§
§id: String
§tag_type_code: Option<String>
§start_time: String
§end_time: Option<String>
§start_day: String
§end_day: Option<String>
§comment: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TagV2
impl<'de> Deserialize<'de> for TagV2
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
impl StructuralPartialEq for TagV2
Auto Trait Implementations§
impl Freeze for TagV2
impl RefUnwindSafe for TagV2
impl Send for TagV2
impl Sync for TagV2
impl Unpin for TagV2
impl UnwindSafe for TagV2
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