pub struct StargazerWithDate {
pub starred_at: String,
pub user: User,
}Expand description
Stargazer with timestamp when the repository was starred
Fields§
§starred_at: String§user: UserTrait Implementations§
Source§impl Clone for StargazerWithDate
impl Clone for StargazerWithDate
Source§fn clone(&self) -> StargazerWithDate
fn clone(&self) -> StargazerWithDate
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 StargazerWithDate
impl Debug for StargazerWithDate
Source§impl<'de> Deserialize<'de> for StargazerWithDate
impl<'de> Deserialize<'de> for StargazerWithDate
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 StargazerWithDate
impl RefUnwindSafe for StargazerWithDate
impl Send for StargazerWithDate
impl Sync for StargazerWithDate
impl Unpin for StargazerWithDate
impl UnwindSafe for StargazerWithDate
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