pub struct WatchInfo {
pub created_at: Option<String>,
pub ignored: Option<bool>,
pub reason: Option<Value>,
pub repository_url: Option<String>,
pub subscribed: Option<bool>,
pub url: Option<String>,
}
Expand description
WatchInfo : WatchInfo represents an API watch status of one repository
Fields§
§created_at: Option<String>
§ignored: Option<bool>
§reason: Option<Value>
§repository_url: Option<String>
§subscribed: Option<bool>
§url: Option<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WatchInfo
impl<'de> Deserialize<'de> for WatchInfo
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 StructuralPartialEq for WatchInfo
Auto Trait Implementations§
impl Freeze for WatchInfo
impl RefUnwindSafe for WatchInfo
impl Send for WatchInfo
impl Sync for WatchInfo
impl Unpin for WatchInfo
impl UnwindSafe for WatchInfo
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