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