pub struct RawDeploymentConfig {
pub realm_id: Option<u32>,
pub realm_secret: Option<String>,
pub ais_endpoint: Option<String>,
}Fields§
§realm_id: Option<u32>§realm_secret: Option<String>Realm secret for AIS registration authentication
ais_endpoint: Option<String>AIS (Actor Identity Service) HTTP endpoint, e.g. "http://ais.example.com:8080".
Trait Implementations§
Source§impl Clone for RawDeploymentConfig
impl Clone for RawDeploymentConfig
Source§fn clone(&self) -> RawDeploymentConfig
fn clone(&self) -> RawDeploymentConfig
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 RawDeploymentConfig
impl Debug for RawDeploymentConfig
Source§impl Default for RawDeploymentConfig
impl Default for RawDeploymentConfig
Source§fn default() -> RawDeploymentConfig
fn default() -> RawDeploymentConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RawDeploymentConfig
impl<'de> Deserialize<'de> for RawDeploymentConfig
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 RawDeploymentConfig
impl RefUnwindSafe for RawDeploymentConfig
impl Send for RawDeploymentConfig
impl Sync for RawDeploymentConfig
impl Unpin for RawDeploymentConfig
impl UnsafeUnpin for RawDeploymentConfig
impl UnwindSafe for RawDeploymentConfig
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