pub struct ProfileDataEntry {
pub client: String,
pub server: Option<String>,
}Expand description
Variable entry in the Forge profile data map.
Each variable has a client value (and sometimes server).
Fields§
§client: String§server: Option<String>Trait Implementations§
Source§impl Clone for ProfileDataEntry
impl Clone for ProfileDataEntry
Source§fn clone(&self) -> ProfileDataEntry
fn clone(&self) -> ProfileDataEntry
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 ProfileDataEntry
impl Debug for ProfileDataEntry
Source§impl Default for ProfileDataEntry
impl Default for ProfileDataEntry
Source§fn default() -> ProfileDataEntry
fn default() -> ProfileDataEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProfileDataEntry
impl<'de> Deserialize<'de> for ProfileDataEntry
Source§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
Auto Trait Implementations§
impl Freeze for ProfileDataEntry
impl RefUnwindSafe for ProfileDataEntry
impl Send for ProfileDataEntry
impl Sync for ProfileDataEntry
impl Unpin for ProfileDataEntry
impl UnsafeUnpin for ProfileDataEntry
impl UnwindSafe for ProfileDataEntry
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