#[non_exhaustive]pub struct DevEnvironmentAccessDetails { /* private fields */ }
Expand description
Information about connection details for a Dev Environment.
Implementations§
source§impl DevEnvironmentAccessDetails
impl DevEnvironmentAccessDetails
sourcepub fn stream_url(&self) -> Option<&str>
pub fn stream_url(&self) -> Option<&str>
The URL used to send commands to and from the Dev Environment.
sourcepub fn token_value(&self) -> Option<&str>
pub fn token_value(&self) -> Option<&str>
An encrypted token value that contains session and caller information used to authenticate the connection.
source§impl DevEnvironmentAccessDetails
impl DevEnvironmentAccessDetails
sourcepub fn builder() -> DevEnvironmentAccessDetailsBuilder
pub fn builder() -> DevEnvironmentAccessDetailsBuilder
Creates a new builder-style object to manufacture DevEnvironmentAccessDetails
.
Trait Implementations§
source§impl Clone for DevEnvironmentAccessDetails
impl Clone for DevEnvironmentAccessDetails
source§fn clone(&self) -> DevEnvironmentAccessDetails
fn clone(&self) -> DevEnvironmentAccessDetails
Returns a copy 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 DevEnvironmentAccessDetails
impl Debug for DevEnvironmentAccessDetails
source§impl PartialEq<DevEnvironmentAccessDetails> for DevEnvironmentAccessDetails
impl PartialEq<DevEnvironmentAccessDetails> for DevEnvironmentAccessDetails
source§fn eq(&self, other: &DevEnvironmentAccessDetails) -> bool
fn eq(&self, other: &DevEnvironmentAccessDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DevEnvironmentAccessDetails
Auto Trait Implementations§
impl RefUnwindSafe for DevEnvironmentAccessDetails
impl Send for DevEnvironmentAccessDetails
impl Sync for DevEnvironmentAccessDetails
impl Unpin for DevEnvironmentAccessDetails
impl UnwindSafe for DevEnvironmentAccessDetails
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