pub struct ExternalModInfo {
pub description: Option<String>,
pub warnings: Option<String>,
pub dictionary: HashMap<String, String>,
}Expand description
External modification information.
Fields§
§description: Option<String>Human-readable description of external modifications.
warnings: Option<String>Warning messages about external modifications.
dictionary: HashMap<String, String>Key-value pairs of external modification metadata.
Trait Implementations§
Source§impl Clone for ExternalModInfo
impl Clone for ExternalModInfo
Source§fn clone(&self) -> ExternalModInfo
fn clone(&self) -> ExternalModInfo
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 moreAuto Trait Implementations§
impl Freeze for ExternalModInfo
impl RefUnwindSafe for ExternalModInfo
impl Send for ExternalModInfo
impl Sync for ExternalModInfo
impl Unpin for ExternalModInfo
impl UnsafeUnpin for ExternalModInfo
impl UnwindSafe for ExternalModInfo
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