pub struct LocalizedProject {
pub language: String,
pub display_name: String,
pub statements: Vec<ProjectStatement>,
}Expand description
A per-language override (display name + replacement statements).
Fields§
§language: String§display_name: String§statements: Vec<ProjectStatement>Trait Implementations§
Source§impl Clone for LocalizedProject
impl Clone for LocalizedProject
Source§fn clone(&self) -> LocalizedProject
fn clone(&self) -> LocalizedProject
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 LocalizedProject
impl Debug for LocalizedProject
Source§impl Default for LocalizedProject
impl Default for LocalizedProject
Source§fn default() -> LocalizedProject
fn default() -> LocalizedProject
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LocalizedProject
impl RefUnwindSafe for LocalizedProject
impl Send for LocalizedProject
impl Sync for LocalizedProject
impl Unpin for LocalizedProject
impl UnsafeUnpin for LocalizedProject
impl UnwindSafe for LocalizedProject
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