pub struct ContainerAttachResponse {
pub web_socket_uri: Option<String>,
pub password: Option<String>,
}Expand description
The information for the output stream from container attach.
Fields§
§web_socket_uri: Option<String>The uri for the output stream from the attach.
password: Option<String>The password to the output stream from the attach. Send as an Authorization header value when connecting to the websocketUri.
Implementations§
Trait Implementations§
Source§impl Clone for ContainerAttachResponse
impl Clone for ContainerAttachResponse
Source§fn clone(&self) -> ContainerAttachResponse
fn clone(&self) -> ContainerAttachResponse
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 ContainerAttachResponse
impl Debug for ContainerAttachResponse
Source§impl Default for ContainerAttachResponse
impl Default for ContainerAttachResponse
Source§fn default() -> ContainerAttachResponse
fn default() -> ContainerAttachResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerAttachResponse
impl<'de> Deserialize<'de> for ContainerAttachResponse
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 ContainerAttachResponse
impl PartialEq for ContainerAttachResponse
Source§impl Serialize for ContainerAttachResponse
impl Serialize for ContainerAttachResponse
impl StructuralPartialEq for ContainerAttachResponse
Auto Trait Implementations§
impl Freeze for ContainerAttachResponse
impl RefUnwindSafe for ContainerAttachResponse
impl Send for ContainerAttachResponse
impl Sync for ContainerAttachResponse
impl Unpin for ContainerAttachResponse
impl UnwindSafe for ContainerAttachResponse
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