pub struct RepoResponse {
pub full_name: String,
pub source: String,
pub source_id: i64,
pub state: RepoState,
}Expand description
RepoResponse
JSON schema
{
"type": "object",
"required": [
"full_name",
"source",
"source_id",
"state"
],
"properties": {
"full_name": {
"type": "string"
},
"source": {
"type": "string"
},
"source_id": {
"type": "integer",
"format": "int64",
"minimum": 0.0
},
"state": {
"$ref": "#/components/schemas/RepoState"
}
}
}Fields§
§full_name: String§source: String§source_id: i64§state: RepoStateTrait Implementations§
Source§impl Clone for RepoResponse
impl Clone for RepoResponse
Source§fn clone(&self) -> RepoResponse
fn clone(&self) -> RepoResponse
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 RepoResponse
impl Debug for RepoResponse
Source§impl<'de> Deserialize<'de> for RepoResponse
impl<'de> Deserialize<'de> for RepoResponse
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 RepoResponse
impl RefUnwindSafe for RepoResponse
impl Send for RepoResponse
impl Sync for RepoResponse
impl Unpin for RepoResponse
impl UnsafeUnpin for RepoResponse
impl UnwindSafe for RepoResponse
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