pub struct PackagePath {
pub platform: String,
pub name: String,
pub language: Option<String>,
pub id: String,
pub patch: u8,
pub path: String,
pub filename: String,
}Fields§
§platform: Stringeg. ps3, w64
name: Stringeg. arch_fallen, dungeon_prophecy, europa
language: Option<String>2-letter language code (en, fr, de, etc.)
id: Stringeg. 0059, 043c, unp1, unp2
patch: u8§path: StringFull path to the package
filename: StringImplementations§
Source§impl PackagePath
impl PackagePath
Trait Implementations§
Source§impl Clone for PackagePath
impl Clone for PackagePath
Source§fn clone(&self) -> PackagePath
fn clone(&self) -> PackagePath
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 PackagePath
impl Debug for PackagePath
Auto Trait Implementations§
impl Freeze for PackagePath
impl RefUnwindSafe for PackagePath
impl Send for PackagePath
impl Sync for PackagePath
impl Unpin for PackagePath
impl UnwindSafe for PackagePath
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> CustomError for T
impl<T> CustomError for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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