#[non_exhaustive]pub struct Projects {
pub project_ids: Vec<String>,
/* private fields */
}Expand description
Projects represents the projects to track with the InsightsConfig.
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.project_ids: Vec<String>Optional. The project IDs. Format: {project}
Implementations§
Trait Implementations§
impl StructuralPartialEq for Projects
Auto Trait Implementations§
impl Freeze for Projects
impl RefUnwindSafe for Projects
impl Send for Projects
impl Sync for Projects
impl Unpin for Projects
impl UnsafeUnpin for Projects
impl UnwindSafe for Projects
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