pub struct AddScoConnectionBuilder {
pub connection_handle: u16,
pub packet_type: u16,
}Fields§
§connection_handle: u16§packet_type: u16Implementations§
Source§impl AddScoConnectionBuilder
impl AddScoConnectionBuilder
pub fn build(self) -> AddScoConnection
Trait Implementations§
Source§impl Debug for AddScoConnectionBuilder
impl Debug for AddScoConnectionBuilder
Source§impl From<AddScoConnectionBuilder> for AddScoConnection
impl From<AddScoConnectionBuilder> for AddScoConnection
Source§fn from(builder: AddScoConnectionBuilder) -> AddScoConnection
fn from(builder: AddScoConnectionBuilder) -> AddScoConnection
Converts to this type from the input type.
Source§impl From<AddScoConnectionBuilder> for Command
impl From<AddScoConnectionBuilder> for Command
Source§fn from(builder: AddScoConnectionBuilder) -> Command
fn from(builder: AddScoConnectionBuilder) -> Command
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddScoConnectionBuilder
impl RefUnwindSafe for AddScoConnectionBuilder
impl Send for AddScoConnectionBuilder
impl Sync for AddScoConnectionBuilder
impl Unpin for AddScoConnectionBuilder
impl UnwindSafe for AddScoConnectionBuilder
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> 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 more