pub struct ProviderSetupOptions {
pub home_dir: Option<PathBuf>,
pub agent_name: Option<String>,
pub platform_base_url: Option<String>,
pub webhook_host: Option<String>,
pub webhook_port: Option<u16>,
pub webhook_token: Option<String>,
pub connector_base_url: Option<String>,
pub connector_url: Option<String>,
pub relay_transform_peers_path: Option<String>,
}Fields§
§home_dir: Option<PathBuf>§agent_name: Option<String>§platform_base_url: Option<String>§webhook_host: Option<String>§webhook_port: Option<u16>§webhook_token: Option<String>§connector_base_url: Option<String>§connector_url: Option<String>§relay_transform_peers_path: Option<String>Trait Implementations§
Source§impl Clone for ProviderSetupOptions
impl Clone for ProviderSetupOptions
Source§fn clone(&self) -> ProviderSetupOptions
fn clone(&self) -> ProviderSetupOptions
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 ProviderSetupOptions
impl Debug for ProviderSetupOptions
Source§impl Default for ProviderSetupOptions
impl Default for ProviderSetupOptions
Source§fn default() -> ProviderSetupOptions
fn default() -> ProviderSetupOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProviderSetupOptions
impl<'de> Deserialize<'de> for ProviderSetupOptions
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 ProviderSetupOptions
impl PartialEq for ProviderSetupOptions
Source§impl Serialize for ProviderSetupOptions
impl Serialize for ProviderSetupOptions
impl Eq for ProviderSetupOptions
impl StructuralPartialEq for ProviderSetupOptions
Auto Trait Implementations§
impl Freeze for ProviderSetupOptions
impl RefUnwindSafe for ProviderSetupOptions
impl Send for ProviderSetupOptions
impl Sync for ProviderSetupOptions
impl Unpin for ProviderSetupOptions
impl UnsafeUnpin for ProviderSetupOptions
impl UnwindSafe for ProviderSetupOptions
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