pub struct ResourceInventory {
pub schema_version: u32,
pub root: PathBuf,
pub catalogs: usize,
pub assets: Vec<Resource>,
pub skipped_source_or_tooling_files: usize,
pub excluded_directories: Vec<PathBuf>,
pub diagnostics: Vec<String>,
pub project_kinds: Vec<String>,
pub android_min_sdk: Option<MinSdk>,
}Fields§
§schema_version: u32§root: PathBuf§catalogs: usize§assets: Vec<Resource>§skipped_source_or_tooling_files: usize§excluded_directories: Vec<PathBuf>§diagnostics: Vec<String>§project_kinds: Vec<String>Detected project kinds: xcode, swift_package, android, or directory.
android_min_sdk: Option<MinSdk>Lowest declared Android minSdk, when it could be read from build files.
Trait Implementations§
Source§impl Debug for ResourceInventory
impl Debug for ResourceInventory
Source§impl<'de> Deserialize<'de> for ResourceInventory
impl<'de> Deserialize<'de> for ResourceInventory
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
Auto Trait Implementations§
impl Freeze for ResourceInventory
impl RefUnwindSafe for ResourceInventory
impl Send for ResourceInventory
impl Sync for ResourceInventory
impl Unpin for ResourceInventory
impl UnsafeUnpin for ResourceInventory
impl UnwindSafe for ResourceInventory
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
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more