pub struct GuestEntry {
pub workspace_id: String,
pub app_path: String,
}Expand description
GuestEntry : What a signed-out visitor needs to start a guest sign-in.
Fields§
§workspace_id: String§app_path: StringImplementations§
Source§impl GuestEntry
impl GuestEntry
Sourcepub fn new(workspace_id: String, app_path: String) -> GuestEntry
pub fn new(workspace_id: String, app_path: String) -> GuestEntry
What a signed-out visitor needs to start a guest sign-in.
Trait Implementations§
Source§impl Clone for GuestEntry
impl Clone for GuestEntry
Source§fn clone(&self) -> GuestEntry
fn clone(&self) -> GuestEntry
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 GuestEntry
impl Debug for GuestEntry
Source§impl Default for GuestEntry
impl Default for GuestEntry
Source§fn default() -> GuestEntry
fn default() -> GuestEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GuestEntry
impl<'de> Deserialize<'de> for GuestEntry
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 GuestEntry
impl PartialEq for GuestEntry
Source§impl Serialize for GuestEntry
impl Serialize for GuestEntry
impl StructuralPartialEq for GuestEntry
Auto Trait Implementations§
impl Freeze for GuestEntry
impl RefUnwindSafe for GuestEntry
impl Send for GuestEntry
impl Sync for GuestEntry
impl Unpin for GuestEntry
impl UnsafeUnpin for GuestEntry
impl UnwindSafe for GuestEntry
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