pub struct PhpServerSetting {
pub explanation: Option<String>,
pub recommended: Option<Box<PhpServerSettingRecommended>>,
pub unit: Option<String>,
pub value: Option<Box<PhpServerSettingValue>>,
}
Fields§
§explanation: Option<String>
§recommended: Option<Box<PhpServerSettingRecommended>>
§unit: Option<String>
§value: Option<Box<PhpServerSettingValue>>
Implementations§
Source§impl PhpServerSetting
impl PhpServerSetting
pub fn new() -> PhpServerSetting
Trait Implementations§
Source§impl Clone for PhpServerSetting
impl Clone for PhpServerSetting
Source§fn clone(&self) -> PhpServerSetting
fn clone(&self) -> PhpServerSetting
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 PhpServerSetting
impl Debug for PhpServerSetting
Source§impl Default for PhpServerSetting
impl Default for PhpServerSetting
Source§fn default() -> PhpServerSetting
fn default() -> PhpServerSetting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PhpServerSetting
impl<'de> Deserialize<'de> for PhpServerSetting
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
Source§impl PartialEq for PhpServerSetting
impl PartialEq for PhpServerSetting
Source§impl Serialize for PhpServerSetting
impl Serialize for PhpServerSetting
impl StructuralPartialEq for PhpServerSetting
Auto Trait Implementations§
impl Freeze for PhpServerSetting
impl RefUnwindSafe for PhpServerSetting
impl Send for PhpServerSetting
impl Sync for PhpServerSetting
impl Unpin for PhpServerSetting
impl UnwindSafe for PhpServerSetting
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