pub struct LanguagePackStatus {
pub cache_root: String,
pub runtime_source: &'static str,
pub pack_version: Option<String>,
pub source: Option<String>,
pub profile: Option<String>,
pub entries: Vec<LanguagePackStatusEntry>,
pub last_error: Option<String>,
}Fields§
§cache_root: String§runtime_source: &'static str§pack_version: Option<String>§source: Option<String>§profile: Option<String>§entries: Vec<LanguagePackStatusEntry>§last_error: Option<String>Trait Implementations§
Source§impl Clone for LanguagePackStatus
impl Clone for LanguagePackStatus
Source§fn clone(&self) -> LanguagePackStatus
fn clone(&self) -> LanguagePackStatus
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 LanguagePackStatus
impl Debug for LanguagePackStatus
Auto Trait Implementations§
impl Freeze for LanguagePackStatus
impl RefUnwindSafe for LanguagePackStatus
impl Send for LanguagePackStatus
impl Sync for LanguagePackStatus
impl Unpin for LanguagePackStatus
impl UnsafeUnpin for LanguagePackStatus
impl UnwindSafe for LanguagePackStatus
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