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: bool
Trait 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
Source§impl Ord for ShortRepo
impl Ord for ShortRepo
Source§impl PartialOrd for ShortRepo
impl PartialOrd for ShortRepo
impl Eq 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 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