pub struct CreateLinkResponse {
pub web_origin: Url,
pub credential: StreamLinkCredential,
}Expand description
A created link credential and the web origin for presenting it.
Fields§
§web_origin: UrlCanonical web origin for presenting this deployment’s stream links.
credential: StreamLinkCredentialThe created link credential.
Trait Implementations§
Source§impl Clone for CreateLinkResponse
impl Clone for CreateLinkResponse
Source§fn clone(&self) -> CreateLinkResponse
fn clone(&self) -> CreateLinkResponse
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 CreateLinkResponse
impl Debug for CreateLinkResponse
Source§impl<'de> Deserialize<'de> for CreateLinkResponse
impl<'de> Deserialize<'de> for CreateLinkResponse
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 CreateLinkResponse
impl RefUnwindSafe for CreateLinkResponse
impl Send for CreateLinkResponse
impl Sync for CreateLinkResponse
impl Unpin for CreateLinkResponse
impl UnsafeUnpin for CreateLinkResponse
impl UnwindSafe for CreateLinkResponse
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