pub struct StarsInfo {
pub repo_id: String,
pub star_count: i32,
pub starred_by: Vec<StarredByAgent>,
}Expand description
Star information for a repository.
Fields§
§repo_id: StringRepository ID
star_count: i32Total star count
starred_by: Vec<StarredByAgent>List of agents who starred
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StarsInfo
impl<'de> Deserialize<'de> for StarsInfo
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 StarsInfo
impl RefUnwindSafe for StarsInfo
impl Send for StarsInfo
impl Sync for StarsInfo
impl Unpin for StarsInfo
impl UnwindSafe for StarsInfo
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