pub struct InboundConfig {
pub url: Option<String>,
pub secret: Option<String>,
}Expand description
Inbound forwarding configuration.
Fields§
§url: Option<String>Forwarding URL.
secret: Option<String>HMAC signing secret.
Trait Implementations§
Source§impl Clone for InboundConfig
impl Clone for InboundConfig
Source§fn clone(&self) -> InboundConfig
fn clone(&self) -> InboundConfig
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 InboundConfig
impl Debug for InboundConfig
Source§impl<'de> Deserialize<'de> for InboundConfig
impl<'de> Deserialize<'de> for InboundConfig
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 InboundConfig
impl RefUnwindSafe for InboundConfig
impl Send for InboundConfig
impl Sync for InboundConfig
impl Unpin for InboundConfig
impl UnsafeUnpin for InboundConfig
impl UnwindSafe for InboundConfig
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