pub struct AndroidArtifactMetadata {
pub plugin_name: ConstStr,
pub artifact_path: ConstStr,
pub gradle_dependencies: ConstStr,
}Expand description
Metadata describing an Android plugin artifact (.aar) that must be copied into the host Gradle project.
Fields§
§plugin_name: ConstStr§artifact_path: ConstStr§gradle_dependencies: ConstStrImplementations§
Trait Implementations§
Source§impl Clone for AndroidArtifactMetadata
impl Clone for AndroidArtifactMetadata
Source§fn clone(&self) -> AndroidArtifactMetadata
fn clone(&self) -> AndroidArtifactMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AndroidArtifactMetadata
impl Debug for AndroidArtifactMetadata
Source§impl<'de> Deserialize<'de> for AndroidArtifactMetadata
impl<'de> Deserialize<'de> for AndroidArtifactMetadata
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 AndroidArtifactMetadata
impl PartialEq for AndroidArtifactMetadata
Source§fn eq(&self, other: &AndroidArtifactMetadata) -> bool
fn eq(&self, other: &AndroidArtifactMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AndroidArtifactMetadata
impl Serialize for AndroidArtifactMetadata
impl Copy for AndroidArtifactMetadata
impl Eq for AndroidArtifactMetadata
impl StructuralPartialEq for AndroidArtifactMetadata
Auto Trait Implementations§
impl Freeze for AndroidArtifactMetadata
impl RefUnwindSafe for AndroidArtifactMetadata
impl Send for AndroidArtifactMetadata
impl Sync for AndroidArtifactMetadata
impl Unpin for AndroidArtifactMetadata
impl UnsafeUnpin for AndroidArtifactMetadata
impl UnwindSafe for AndroidArtifactMetadata
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