Struct relay_event_schema::protocol::SystemSdkInfo
source · pub struct SystemSdkInfo {
pub sdk_name: Annotated<String>,
pub version_major: Annotated<u64>,
pub version_minor: Annotated<u64>,
pub version_patchlevel: Annotated<u64>,
pub other: Object<Value>,
}
Expand description
Holds information about the system SDK.
This is relevant for iOS and other platforms that have a system SDK. Not to be confused with the client SDK.
Fields§
§sdk_name: Annotated<String>
The internal name of the SDK.
version_major: Annotated<u64>
The major version of the SDK as integer or 0.
version_minor: Annotated<u64>
The minor version of the SDK as integer or 0.
version_patchlevel: Annotated<u64>
The patch version of the SDK as integer or 0.
other: Object<Value>
Additional arbitrary fields for forwards compatibility.
Trait Implementations§
source§impl Clone for SystemSdkInfo
impl Clone for SystemSdkInfo
source§fn clone(&self) -> SystemSdkInfo
fn clone(&self) -> SystemSdkInfo
Returns a copy 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 SystemSdkInfo
impl Debug for SystemSdkInfo
source§impl Default for SystemSdkInfo
impl Default for SystemSdkInfo
source§fn default() -> SystemSdkInfo
fn default() -> SystemSdkInfo
Returns the “default value” for a type. Read more
source§impl Empty for SystemSdkInfo
impl Empty for SystemSdkInfo
source§impl FromValue for SystemSdkInfo
impl FromValue for SystemSdkInfo
source§fn from_value(__value: Annotated<Value>) -> Annotated<Self>
fn from_value(__value: Annotated<Value>) -> Annotated<Self>
Creates a meta structure from an annotated boxed value.
source§impl IntoValue for SystemSdkInfo
impl IntoValue for SystemSdkInfo
source§fn into_value(self) -> Value
fn into_value(self) -> Value
Boxes the meta structure back into a value.
source§fn serialize_payload<S>(
&self,
__serializer: S,
__behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
Self: Sized,
S: Serializer,
fn serialize_payload<S>(
&self,
__serializer: S,
__behavior: SkipSerialization,
) -> Result<S::Ok, S::Error>where
Self: Sized,
S: Serializer,
Efficiently serializes the payload directly.
source§fn extract_child_meta(&self) -> MetaMapwhere
Self: Sized,
fn extract_child_meta(&self) -> MetaMapwhere
Self: Sized,
Extracts children meta map out of a value.
§fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
fn extract_meta_tree(value: &Annotated<Self>) -> MetaTreewhere
Self: Sized,
Extracts the meta tree out of annotated value. Read more
source§impl PartialEq for SystemSdkInfo
impl PartialEq for SystemSdkInfo
source§impl ProcessValue for SystemSdkInfo
impl ProcessValue for SystemSdkInfo
source§fn value_type(&self) -> EnumSet<ValueType>
fn value_type(&self) -> EnumSet<ValueType>
Returns the type of the value.
source§fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_value<P>(
&mut self,
__meta: &mut Meta,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Executes a processor on this value.
source§fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
fn process_child_values<P>(
&mut self,
__processor: &mut P,
__state: &ProcessingState<'_>,
) -> ProcessingResultwhere
P: Processor,
Recurses into children of this value.
impl StructuralPartialEq for SystemSdkInfo
Auto Trait Implementations§
impl Freeze for SystemSdkInfo
impl RefUnwindSafe for SystemSdkInfo
impl Send for SystemSdkInfo
impl Sync for SystemSdkInfo
impl Unpin for SystemSdkInfo
impl UnwindSafe for SystemSdkInfo
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)