pub struct RepoSummaryList {
pub data: Vec<RepoSummary>,
}Expand description
All repositories visible to the organization, across all providers.
JSON schema
{
"title": "RepoSummaryList",
"description": "All repositories visible to the organization, across
all providers.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"description": "The repositories.",
"type": "array",
"items": {
"$ref": "#/components/schemas/RepoSummary"
}
}
}
}Fields§
§data: Vec<RepoSummary>The repositories.
Trait Implementations§
Source§impl Clone for RepoSummaryList
impl Clone for RepoSummaryList
Source§fn clone(&self) -> RepoSummaryList
fn clone(&self) -> RepoSummaryList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RepoSummaryList
impl Debug for RepoSummaryList
Source§impl<'de> Deserialize<'de> for RepoSummaryList
impl<'de> Deserialize<'de> for RepoSummaryList
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepoSummaryList, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RepoSummaryList, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for RepoSummaryList
impl Serialize for RepoSummaryList
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for RepoSummaryList
impl RefUnwindSafe for RepoSummaryList
impl Send for RepoSummaryList
impl Sync for RepoSummaryList
impl Unpin for RepoSummaryList
impl UnsafeUnpin for RepoSummaryList
impl UnwindSafe for RepoSummaryList
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