pub struct Signal {
pub location_id: LocationId,
pub platform: PlatformName,
pub review_id: Id,
pub sentiment: Sentiment,
pub themes: Vec<Theme>,
pub escalation: Escalation,
}Expand description
Source-derived review signal for guest-experience trend and response workflows.
Fields§
§location_id: LocationIdLocation id fact promoted into this reputation contract.
platform: PlatformNamePlatform fact promoted into this reputation contract.
review_id: IdReview id fact promoted into this reputation contract.
sentiment: SentimentSentiment fact promoted into this reputation contract.
themes: Vec<Theme>Themes fact promoted into this reputation contract.
escalation: EscalationEscalation fact promoted into this reputation contract.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Signal
impl<'de> Deserialize<'de> for Signal
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 Eq for Signal
impl StructuralPartialEq for Signal
Auto Trait Implementations§
impl Freeze for Signal
impl RefUnwindSafe for Signal
impl Send for Signal
impl Sync for Signal
impl Unpin for Signal
impl UnsafeUnpin for Signal
impl UnwindSafe for Signal
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