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