pub struct PlatformProgrammingLanguage {
pub name: Option<String>,
pub version: Option<String>,
}
Expand description
A programming language supported by the platform.
Fields§
§name: Option<String>
The name of the programming language.
version: Option<String>
The version of the programming language.
Trait Implementations§
Source§impl Clone for PlatformProgrammingLanguage
impl Clone for PlatformProgrammingLanguage
Source§fn clone(&self) -> PlatformProgrammingLanguage
fn clone(&self) -> PlatformProgrammingLanguage
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 PlatformProgrammingLanguage
impl Debug for PlatformProgrammingLanguage
Source§impl Default for PlatformProgrammingLanguage
impl Default for PlatformProgrammingLanguage
Source§fn default() -> PlatformProgrammingLanguage
fn default() -> PlatformProgrammingLanguage
Returns the “default value” for a type. Read more
impl StructuralPartialEq for PlatformProgrammingLanguage
Auto Trait Implementations§
impl Freeze for PlatformProgrammingLanguage
impl RefUnwindSafe for PlatformProgrammingLanguage
impl Send for PlatformProgrammingLanguage
impl Sync for PlatformProgrammingLanguage
impl Unpin for PlatformProgrammingLanguage
impl UnwindSafe for PlatformProgrammingLanguage
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