pub struct GetAppIdResult {
pub app_id: Option<String>,
pub recommended_id: Option<String>,
}Fields§
§app_id: Option<String>App id, either from manifest’s id attribute or computed from start_url
recommended_id: Option<String>Recommendation for manifest’s id attribute to match current id computed from start_url
Trait Implementations§
Source§impl Clone for GetAppIdResult
impl Clone for GetAppIdResult
Source§fn clone(&self) -> GetAppIdResult
fn clone(&self) -> GetAppIdResult
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 GetAppIdResult
impl Debug for GetAppIdResult
Source§impl Default for GetAppIdResult
impl Default for GetAppIdResult
Source§fn default() -> GetAppIdResult
fn default() -> GetAppIdResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAppIdResult
impl<'de> Deserialize<'de> for GetAppIdResult
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 GetAppIdResult
impl PartialEq for GetAppIdResult
Source§impl Serialize for GetAppIdResult
impl Serialize for GetAppIdResult
Source§impl TryFrom<Value> for GetAppIdResult
impl TryFrom<Value> for GetAppIdResult
impl StructuralPartialEq for GetAppIdResult
Auto Trait Implementations§
impl Freeze for GetAppIdResult
impl RefUnwindSafe for GetAppIdResult
impl Send for GetAppIdResult
impl Sync for GetAppIdResult
impl Unpin for GetAppIdResult
impl UnsafeUnpin for GetAppIdResult
impl UnwindSafe for GetAppIdResult
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