#[non_exhaustive]pub struct InsightReference {
pub insight: String,
/* private fields */
}Expand description
Reference to an associated insight.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.insight: StringInsight resource name, e.g. projects/[PROJECT_NUMBER]/locations/[LOCATION]/insightTypes/[INSIGHT_TYPE_ID]/insights/[INSIGHT_ID]
Implementations§
Trait Implementations§
Source§impl Clone for InsightReference
impl Clone for InsightReference
Source§fn clone(&self) -> InsightReference
fn clone(&self) -> InsightReference
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 Debug for InsightReference
impl Debug for InsightReference
Source§impl Default for InsightReference
impl Default for InsightReference
Source§fn default() -> InsightReference
fn default() -> InsightReference
Returns the “default value” for a type. Read more
Source§impl Message for InsightReference
impl Message for InsightReference
Source§impl PartialEq for InsightReference
impl PartialEq for InsightReference
impl StructuralPartialEq for InsightReference
Auto Trait Implementations§
impl Freeze for InsightReference
impl RefUnwindSafe for InsightReference
impl Send for InsightReference
impl Sync for InsightReference
impl Unpin for InsightReference
impl UnsafeUnpin for InsightReference
impl UnwindSafe for InsightReference
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