pub struct RepositoryInfo {
pub slug: String,
pub project: ProjectInfo,
}
Expand description
Information about a repository
Fields§
§slug: String
The slug of the repository
project: ProjectInfo
The project the repository belongs to
Trait Implementations§
Source§impl Clone for RepositoryInfo
impl Clone for RepositoryInfo
Source§fn clone(&self) -> RepositoryInfo
fn clone(&self) -> RepositoryInfo
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 RepositoryInfo
impl Debug for RepositoryInfo
Source§impl Default for RepositoryInfo
impl Default for RepositoryInfo
Source§fn default() -> RepositoryInfo
fn default() -> RepositoryInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepositoryInfo
impl<'de> Deserialize<'de> for RepositoryInfo
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
Source§impl PartialEq for RepositoryInfo
impl PartialEq for RepositoryInfo
Source§impl Serialize for RepositoryInfo
impl Serialize for RepositoryInfo
impl StructuralPartialEq for RepositoryInfo
Auto Trait Implementations§
impl Freeze for RepositoryInfo
impl RefUnwindSafe for RepositoryInfo
impl Send for RepositoryInfo
impl Sync for RepositoryInfo
impl Unpin for RepositoryInfo
impl UnwindSafe for RepositoryInfo
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