Struct hrobot::api::boot::ActivePleskConfig
source · pub struct ActivePleskConfig {
pub distribution: PleskDistribution,
pub language: String,
pub password: Option<String>,
pub hostname: Option<String>,
}
Expand description
Currently active Plesk configuration.
Fields§
§distribution: PleskDistribution
Distribution selected in currently active Plesk installation.
language: String
Language selected in currently active Plesk installation.
password: Option<String>
Password for the Plesk installation.
hostname: Option<String>
Hostname for the Plesk installation.
Trait Implementations§
source§impl Clone for ActivePleskConfig
impl Clone for ActivePleskConfig
source§fn clone(&self) -> ActivePleskConfig
fn clone(&self) -> ActivePleskConfig
Returns a copy 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 ActivePleskConfig
impl Debug for ActivePleskConfig
source§impl<'de> Deserialize<'de> for ActivePleskConfig
impl<'de> Deserialize<'de> for ActivePleskConfig
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<ActivePleskConfig> for ActivePleskConfig
impl PartialEq<ActivePleskConfig> for ActivePleskConfig
source§fn eq(&self, other: &ActivePleskConfig) -> bool
fn eq(&self, other: &ActivePleskConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ActivePleskConfig
impl StructuralEq for ActivePleskConfig
impl StructuralPartialEq for ActivePleskConfig
Auto Trait Implementations§
impl RefUnwindSafe for ActivePleskConfig
impl Send for ActivePleskConfig
impl Sync for ActivePleskConfig
impl Unpin for ActivePleskConfig
impl UnwindSafe for ActivePleskConfig
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.