#[non_exhaustive]pub struct RUMApplication {
pub attributes: RUMApplicationAttributes,
pub id: String,
pub type_: RUMApplicationType,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
RUM application.
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.attributes: RUMApplicationAttributes
RUM application attributes.
id: String
RUM application ID.
type_: RUMApplicationType
RUM application response type.
additional_properties: BTreeMap<String, Value>
Implementations§
Source§impl RUMApplication
impl RUMApplication
pub fn new( attributes: RUMApplicationAttributes, id: String, type_: RUMApplicationType, ) -> RUMApplication
pub fn additional_properties(self, value: BTreeMap<String, Value>) -> Self
Trait Implementations§
Source§impl Clone for RUMApplication
impl Clone for RUMApplication
Source§fn clone(&self) -> RUMApplication
fn clone(&self) -> RUMApplication
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 RUMApplication
impl Debug for RUMApplication
Source§impl<'de> Deserialize<'de> for RUMApplication
impl<'de> Deserialize<'de> for RUMApplication
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 RUMApplication
impl PartialEq for RUMApplication
Source§impl Serialize for RUMApplication
impl Serialize for RUMApplication
impl StructuralPartialEq for RUMApplication
Auto Trait Implementations§
impl Freeze for RUMApplication
impl RefUnwindSafe for RUMApplication
impl Send for RUMApplication
impl Sync for RUMApplication
impl Unpin for RUMApplication
impl UnwindSafe for RUMApplication
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