Struct azure_devops_rust_api::artifacts::models::Feed
source · pub struct Feed {
pub feed_core: FeedCore,
pub links: Option<Value>,
pub badges_enabled: Option<bool>,
pub default_view_id: Option<String>,
pub deleted_date: Option<OffsetDateTime>,
pub description: Option<String>,
pub hide_deleted_package_versions: Option<bool>,
pub permanent_deleted_date: Option<OffsetDateTime>,
pub permissions: Vec<FeedPermission>,
pub scheduled_permanent_delete_date: Option<OffsetDateTime>,
pub upstream_enabled_changed_date: Option<OffsetDateTime>,
pub url: Option<String>,
}
Expand description
A container for artifacts.
Fields§
§feed_core: FeedCore
§links: Option<Value>
Links
badges_enabled: Option<bool>
If set, this feed supports generation of package badges.
default_view_id: Option<String>
The view that the feed administrator has indicated is the default experience for readers.
deleted_date: Option<OffsetDateTime>
The date that this feed was deleted.
description: Option<String>
A description for the feed. Descriptions must not exceed 255 characters.
hide_deleted_package_versions: Option<bool>
If set, the feed will hide all deleted/unpublished versions
permanent_deleted_date: Option<OffsetDateTime>
The date that this feed was permanently deleted.
permissions: Vec<FeedPermission>
Explicit permissions for the feed.
scheduled_permanent_delete_date: Option<OffsetDateTime>
The date that this feed is scheduled to be permanently deleted.
upstream_enabled_changed_date: Option<OffsetDateTime>
If set, time that the UpstreamEnabled property was changed. Will be null if UpstreamEnabled was never changed after Feed creation.
url: Option<String>
The URL of the base feed in GUID form.
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
source§impl PartialEq for Feed
impl PartialEq for Feed
impl StructuralPartialEq for Feed
Auto Trait Implementations§
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