pub struct ShortRepo {
pub id: u64,
pub name: String,
pub full_name: String,
pub private: bool,
}Expand description
Short info about a repository.
Fields§
§id: u64§name: String§full_name: String§private: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for ShortRepo
impl<'de> Deserialize<'de> for ShortRepo
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
impl Eq for ShortRepo
Source§impl Ord for ShortRepo
impl Ord for ShortRepo
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for ShortRepo
impl PartialOrd for ShortRepo
impl StructuralPartialEq for ShortRepo
Auto Trait Implementations§
impl Freeze for ShortRepo
impl RefUnwindSafe for ShortRepo
impl Send for ShortRepo
impl Sync for ShortRepo
impl Unpin for ShortRepo
impl UnsafeUnpin for ShortRepo
impl UnwindSafe for ShortRepo
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