pub struct WebLabelOption {
pub updated_at: Option<String>,
pub repo_id: Option<i64>,
pub color: Option<String>,
pub description: Option<String>,
pub created_at: Option<String>,
pub name: Option<String>,
pub slug: Option<String>,
pub id: Option<String>,
}
Expand description
WebLabelOption 模型
Fields§
§updated_at: Option<String>
§repo_id: Option<i64>
§color: Option<String>
§description: Option<String>
§created_at: Option<String>
§name: Option<String>
§slug: Option<String>
§id: Option<String>
Trait Implementations§
Source§impl Clone for WebLabelOption
impl Clone for WebLabelOption
Source§fn clone(&self) -> WebLabelOption
fn clone(&self) -> WebLabelOption
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 WebLabelOption
impl Debug for WebLabelOption
Source§impl<'de> Deserialize<'de> for WebLabelOption
impl<'de> Deserialize<'de> for WebLabelOption
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 WebLabelOption
impl RefUnwindSafe for WebLabelOption
impl Send for WebLabelOption
impl Sync for WebLabelOption
impl Unpin for WebLabelOption
impl UnwindSafe for WebLabelOption
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