pub struct ConfigRemoteUpdateRemoteRequest {
pub auth_id: Option<String>,
pub comment: Option<String>,
pub delete: Option<Vec<PbsConfigRemoteInlineEnum>>,
pub digest: Option<String>,
pub fingerprint: Option<String>,
pub host: Option<String>,
pub password: Option<String>,
pub port: Option<i64>,
pub use_node_proxy: Option<bool>,
}Fields§
§auth_id: Option<String>Authentication ID
comment: Option<String>Comment.
delete: Option<Vec<PbsConfigRemoteInlineEnum>>List of properties to delete.
digest: Option<String>Prevent changes if current configuration file has different SHA256 digest. This can be used to prevent concurrent modifications.
fingerprint: Option<String>X509 certificate fingerprint (sha256).
host: Option<String>DNS name or IP address.
password: Option<String>Password or auth token for remote host.
port: Option<i64>The (optional) port
use_node_proxy: Option<bool>Use the http proxy configuration of the node for remote connections.
Implementations§
Trait Implementations§
Source§impl Clone for ConfigRemoteUpdateRemoteRequest
impl Clone for ConfigRemoteUpdateRemoteRequest
Source§fn clone(&self) -> ConfigRemoteUpdateRemoteRequest
fn clone(&self) -> ConfigRemoteUpdateRemoteRequest
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 Default for ConfigRemoteUpdateRemoteRequest
impl Default for ConfigRemoteUpdateRemoteRequest
Source§fn default() -> ConfigRemoteUpdateRemoteRequest
fn default() -> ConfigRemoteUpdateRemoteRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigRemoteUpdateRemoteRequest
impl<'de> Deserialize<'de> for ConfigRemoteUpdateRemoteRequest
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 ConfigRemoteUpdateRemoteRequest
impl PartialEq for ConfigRemoteUpdateRemoteRequest
Source§fn eq(&self, other: &ConfigRemoteUpdateRemoteRequest) -> bool
fn eq(&self, other: &ConfigRemoteUpdateRemoteRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConfigRemoteUpdateRemoteRequest
Auto Trait Implementations§
impl Freeze for ConfigRemoteUpdateRemoteRequest
impl RefUnwindSafe for ConfigRemoteUpdateRemoteRequest
impl Send for ConfigRemoteUpdateRemoteRequest
impl Sync for ConfigRemoteUpdateRemoteRequest
impl Unpin for ConfigRemoteUpdateRemoteRequest
impl UnsafeUnpin for ConfigRemoteUpdateRemoteRequest
impl UnwindSafe for ConfigRemoteUpdateRemoteRequest
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