pub struct SharedWorldKey {
pub rust_analyzer_version: String,
pub toolchain: Option<String>,
pub sysroot: Option<String>,
pub cargo_target: Option<String>,
pub config: SharedWorldConfigKey,
pub load: SharedWorldLoadKey,
}Fields§
§rust_analyzer_version: String§toolchain: Option<String>§sysroot: Option<String>§cargo_target: Option<String>§config: SharedWorldConfigKey§load: SharedWorldLoadKeyTrait Implementations§
Source§fn clone(&self) -> SharedWorldKey
fn clone(&self) -> SharedWorldKey
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§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§fn cmp(&self, other: &SharedWorldKey) -> Ordering
fn cmp(&self, other: &SharedWorldKey) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§fn eq(&self, other: &SharedWorldKey) -> bool
fn eq(&self, other: &SharedWorldKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto Trait Implementations§
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