pub struct Feed {
pub timeline_url: String,
pub user_url: String,
pub current_user_public_url: Option<String>,
pub current_user_url: Option<String>,
pub current_user_actor_url: Option<String>,
pub current_user_organization_url: Option<String>,
pub current_user_organization_urls: Option<Vec<String>>,
pub security_advisories_url: Option<String>,
pub repository_discussions_url: Option<String>,
pub repository_discussions_category_url: Option<String>,
pub _links: Box<FeedLinks>,
}
Expand description
Feed : Feed
Fields§
§timeline_url: String
§user_url: String
§current_user_public_url: Option<String>
§current_user_url: Option<String>
§current_user_actor_url: Option<String>
§current_user_organization_url: Option<String>
§current_user_organization_urls: Option<Vec<String>>
§security_advisories_url: Option<String>
§repository_discussions_url: Option<String>
A feed of discussions for a given repository.
repository_discussions_category_url: Option<String>
A feed of discussions for a given repository and category.
_links: Box<FeedLinks>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Feed
impl<'de> Deserialize<'de> for Feed
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 Feed
Auto Trait Implementations§
impl Freeze for Feed
impl RefUnwindSafe for Feed
impl Send for Feed
impl Sync for Feed
impl Unpin for Feed
impl UnwindSafe for Feed
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