Struct sentry::protocol::ProguardDebugImage
source · [−]pub struct ProguardDebugImage {
pub uuid: Uuid,
}
Expand description
Represents a proguard mapping file reference.
Fields
uuid: Uuid
The UUID of the associated proguard file.
Trait Implementations
sourceimpl Clone for ProguardDebugImage
impl Clone for ProguardDebugImage
sourcepub fn clone(&self) -> ProguardDebugImage
pub fn clone(&self) -> ProguardDebugImage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ProguardDebugImage
impl Debug for ProguardDebugImage
sourceimpl<'de> Deserialize<'de> for ProguardDebugImage
impl<'de> Deserialize<'de> for ProguardDebugImage
sourcepub fn deserialize<__D>(
__deserializer: __D
) -> Result<ProguardDebugImage, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<ProguardDebugImage, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<ProguardDebugImage> for DebugImage
impl From<ProguardDebugImage> for DebugImage
sourcepub fn from(data: ProguardDebugImage) -> DebugImage
pub fn from(data: ProguardDebugImage) -> DebugImage
Performs the conversion.
sourceimpl PartialEq<ProguardDebugImage> for ProguardDebugImage
impl PartialEq<ProguardDebugImage> for ProguardDebugImage
sourcepub fn eq(&self, other: &ProguardDebugImage) -> bool
pub fn eq(&self, other: &ProguardDebugImage) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &ProguardDebugImage) -> bool
pub fn ne(&self, other: &ProguardDebugImage) -> bool
This method tests for !=
.
sourceimpl Serialize for ProguardDebugImage
impl Serialize for ProguardDebugImage
sourcepub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ProguardDebugImage
Auto Trait Implementations
impl RefUnwindSafe for ProguardDebugImage
impl Send for ProguardDebugImage
impl Sync for ProguardDebugImage
impl Unpin for ProguardDebugImage
impl UnwindSafe for ProguardDebugImage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more