pub struct LeSetupIsoDataPathBuilder {
pub codec_configuration: Vec<u8>,
pub codec_id: u64,
pub connection_handle: u16,
pub controller_delay: u32,
pub data_path_direction: DataPathDirection,
pub data_path_id: u8,
}Fields§
§codec_configuration: Vec<u8>§codec_id: u64§connection_handle: u16§controller_delay: u32§data_path_direction: DataPathDirection§data_path_id: u8Implementations§
Source§impl LeSetupIsoDataPathBuilder
impl LeSetupIsoDataPathBuilder
pub fn build(self) -> LeSetupIsoDataPath
Trait Implementations§
Source§impl Debug for LeSetupIsoDataPathBuilder
impl Debug for LeSetupIsoDataPathBuilder
Source§impl From<LeSetupIsoDataPathBuilder> for Command
impl From<LeSetupIsoDataPathBuilder> for Command
Source§fn from(builder: LeSetupIsoDataPathBuilder) -> Command
fn from(builder: LeSetupIsoDataPathBuilder) -> Command
Converts to this type from the input type.
Source§impl From<LeSetupIsoDataPathBuilder> for LeSetupIsoDataPath
impl From<LeSetupIsoDataPathBuilder> for LeSetupIsoDataPath
Source§fn from(builder: LeSetupIsoDataPathBuilder) -> LeSetupIsoDataPath
fn from(builder: LeSetupIsoDataPathBuilder) -> LeSetupIsoDataPath
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LeSetupIsoDataPathBuilder
impl RefUnwindSafe for LeSetupIsoDataPathBuilder
impl Send for LeSetupIsoDataPathBuilder
impl Sync for LeSetupIsoDataPathBuilder
impl Unpin for LeSetupIsoDataPathBuilder
impl UnwindSafe for LeSetupIsoDataPathBuilder
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