pub struct V2AndroidApplication {
pub package_name: Option<String>,
pub sha1_fingerprint: Option<String>,
}Expand description
Identifier of an Android application for key use.
This type is not used in any activity, and only used as part of another schema.
Fields§
§package_name: Option<String>The package name of the application.
sha1_fingerprint: Option<String>The SHA1 fingerprint of the application. For example, both sha1 formats are acceptable : DA:39:A3:EE:5E:6B:4B:0D:32:55:BF:EF:95:60:18:90:AF:D8:07:09 or DA39A3EE5E6B4B0D3255BFEF95601890AFD80709. Output format is the latter.
Trait Implementations§
Source§impl Clone for V2AndroidApplication
impl Clone for V2AndroidApplication
Source§fn clone(&self) -> V2AndroidApplication
fn clone(&self) -> V2AndroidApplication
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 V2AndroidApplication
impl Debug for V2AndroidApplication
Source§impl Default for V2AndroidApplication
impl Default for V2AndroidApplication
Source§fn default() -> V2AndroidApplication
fn default() -> V2AndroidApplication
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for V2AndroidApplication
impl<'de> Deserialize<'de> for V2AndroidApplication
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 Serialize for V2AndroidApplication
impl Serialize for V2AndroidApplication
impl Part for V2AndroidApplication
Auto Trait Implementations§
impl Freeze for V2AndroidApplication
impl RefUnwindSafe for V2AndroidApplication
impl Send for V2AndroidApplication
impl Sync for V2AndroidApplication
impl Unpin for V2AndroidApplication
impl UnwindSafe for V2AndroidApplication
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