pub struct InboundPathParams {
pub app_id: String,
pub inbound_token: String,
}
Fields§
§app_id: String
The app’s ID or UID
inbound_token: String
Implementations§
Source§impl InboundPathParams
impl InboundPathParams
pub fn new(app_id: String, inbound_token: String) -> InboundPathParams
Trait Implementations§
Source§impl Clone for InboundPathParams
impl Clone for InboundPathParams
Source§fn clone(&self) -> InboundPathParams
fn clone(&self) -> InboundPathParams
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 InboundPathParams
impl Debug for InboundPathParams
Source§impl Default for InboundPathParams
impl Default for InboundPathParams
Source§fn default() -> InboundPathParams
fn default() -> InboundPathParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InboundPathParams
impl<'de> Deserialize<'de> for InboundPathParams
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 InboundPathParams
impl PartialEq for InboundPathParams
Source§impl Serialize for InboundPathParams
impl Serialize for InboundPathParams
impl StructuralPartialEq for InboundPathParams
Auto Trait Implementations§
impl Freeze for InboundPathParams
impl RefUnwindSafe for InboundPathParams
impl Send for InboundPathParams
impl Sync for InboundPathParams
impl Unpin for InboundPathParams
impl UnwindSafe for InboundPathParams
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