Struct azure_devops_rust_api::search::models::FeedInfo
source · pub struct FeedInfo {
pub collection_id: Option<String>,
pub collection_name: Option<String>,
pub feed_id: Option<String>,
pub feed_name: Option<String>,
pub latest_matched_version: Option<String>,
pub latest_version: Option<String>,
pub package_url: Option<String>,
pub views: Vec<String>,
}
Expand description
Defines the details of a feed.
Fields§
§collection_id: Option<String>
Id of the collection.
collection_name: Option<String>
Name of the collection.
feed_id: Option<String>
Id of the feed.
feed_name: Option<String>
Name of the feed.
latest_matched_version: Option<String>
Latest matched version of package in this Feed.
latest_version: Option<String>
Latest version of package in this Feed.
package_url: Option<String>
Url of package in this Feed.
views: Vec<String>
List of views which contain the matched package.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for FeedInfo
impl<'de> Deserialize<'de> for FeedInfo
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 FeedInfo
impl PartialEq for FeedInfo
impl StructuralPartialEq for FeedInfo
Auto Trait Implementations§
impl RefUnwindSafe for FeedInfo
impl Send for FeedInfo
impl Sync for FeedInfo
impl Unpin for FeedInfo
impl UnwindSafe for FeedInfo
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