pub struct ResolveFeedView {
pub feed_id: String,
pub label: String,
pub compatibility: ProtocolCompatibility,
pub visibility: String,
pub publisher_github_user_id: Option<u64>,
pub publisher_login: String,
pub publisher_display_name: Option<String>,
pub publisher_avatar: Option<String>,
pub publisher_verified: bool,
pub last_seen_at: OffsetDateTime,
}Fields§
§feed_id: String§label: String§compatibility: ProtocolCompatibility§visibility: String§publisher_github_user_id: Option<u64>§publisher_login: String§publisher_display_name: Option<String>§publisher_avatar: Option<String>§publisher_verified: bool§last_seen_at: OffsetDateTimeTrait Implementations§
Source§impl Clone for ResolveFeedView
impl Clone for ResolveFeedView
Source§fn clone(&self) -> ResolveFeedView
fn clone(&self) -> ResolveFeedView
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResolveFeedView
impl Debug for ResolveFeedView
Source§impl<'de> Deserialize<'de> for ResolveFeedView
impl<'de> Deserialize<'de> for ResolveFeedView
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 PartialEq for ResolveFeedView
impl PartialEq for ResolveFeedView
Source§fn eq(&self, other: &ResolveFeedView) -> bool
fn eq(&self, other: &ResolveFeedView) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ResolveFeedView
impl Serialize for ResolveFeedView
impl Eq for ResolveFeedView
impl StructuralPartialEq for ResolveFeedView
Auto Trait Implementations§
impl Freeze for ResolveFeedView
impl RefUnwindSafe for ResolveFeedView
impl Send for ResolveFeedView
impl Sync for ResolveFeedView
impl Unpin for ResolveFeedView
impl UnsafeUnpin for ResolveFeedView
impl UnwindSafe for ResolveFeedView
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