#[repr(C)]pub struct indigo_adapter_context {
pub input: c_int,
pub output: c_int,
pub web_socket: bool,
pub url_prefix: [c_char; 128],
}Expand description
Wire protocol adapter private data structure.
Fields§
§input: c_int< input handle
output: c_int< output handle
web_socket: bool< connection over WebSocket (RFC6455)
url_prefix: [c_char; 128]< server url prefix (for BLOB download)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for indigo_adapter_context
impl RefUnwindSafe for indigo_adapter_context
impl Send for indigo_adapter_context
impl Sync for indigo_adapter_context
impl Unpin for indigo_adapter_context
impl UnwindSafe for indigo_adapter_context
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