#[non_exhaustive]pub struct DevEnvironmentAccessDetails {
pub stream_url: String,
pub token_value: String,
}
Expand description
Information about connection details for a Dev Environment.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.stream_url: String
The URL used to send commands to and from the Dev Environment.
token_value: String
An encrypted token value that contains session and caller information used to authenticate the connection.
Implementations§
source§impl DevEnvironmentAccessDetails
impl DevEnvironmentAccessDetails
sourcepub fn stream_url(&self) -> &str
pub fn stream_url(&self) -> &str
The URL used to send commands to and from the Dev Environment.
sourcepub fn token_value(&self) -> &str
pub fn token_value(&self) -> &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 for DevEnvironmentAccessDetails
impl PartialEq 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 Freeze for DevEnvironmentAccessDetails
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.