pub struct PersonalRecommendationAttributes {
pub kind: PersonalRecommendationKind,
pub next_update_date: OffsetDateTime,
pub reason: Option<PersonalRecommendationReason>,
pub resource_types: Vec<String>,
pub title: Option<PersonalRecommendationTitle>,
}Expand description
Personal recommendation attributes
Fields§
§kind: PersonalRecommendationKindRecommendation kind
next_update_date: OffsetDateTimeThe next date in UTC format for updating the recommendation
reason: Option<PersonalRecommendationReason>The localized reason for the recommendation
resource_types: Vec<String>The resource types supported by the recommendation
title: Option<PersonalRecommendationTitle>The localized title for the recommendation
Trait Implementations§
Source§impl Clone for PersonalRecommendationAttributes
impl Clone for PersonalRecommendationAttributes
Source§fn clone(&self) -> PersonalRecommendationAttributes
fn clone(&self) -> PersonalRecommendationAttributes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for PersonalRecommendationAttributes
impl<'de> Deserialize<'de> for PersonalRecommendationAttributes
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 PersonalRecommendationAttributes
impl PartialEq for PersonalRecommendationAttributes
Source§fn eq(&self, other: &PersonalRecommendationAttributes) -> bool
fn eq(&self, other: &PersonalRecommendationAttributes) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PersonalRecommendationAttributes
impl StructuralPartialEq for PersonalRecommendationAttributes
Auto Trait Implementations§
impl Freeze for PersonalRecommendationAttributes
impl RefUnwindSafe for PersonalRecommendationAttributes
impl Send for PersonalRecommendationAttributes
impl Sync for PersonalRecommendationAttributes
impl Unpin for PersonalRecommendationAttributes
impl UnwindSafe for PersonalRecommendationAttributes
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