pub struct ConnectResponse {
pub error: String,
pub metadata: Vec<(String, String)>,
}Expand description
The connection response sent back to the edge.
Fields§
§error: StringAn error message; empty on success.
metadata: Vec<(String, String)>Status and response-header metadata entries.
Trait Implementations§
Source§impl Clone for ConnectResponse
impl Clone for ConnectResponse
Source§impl Debug for ConnectResponse
impl Debug for ConnectResponse
Auto Trait Implementations§
impl Freeze for ConnectResponse
impl RefUnwindSafe for ConnectResponse
impl Send for ConnectResponse
impl Sync for ConnectResponse
impl Unpin for ConnectResponse
impl UnsafeUnpin for ConnectResponse
impl UnwindSafe for ConnectResponse
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