pub struct CisEstablishedParameters {
    pub cig_sync_delay: Option<i64>,
    pub cis_sync_delay: Option<i64>,
    pub max_subevents: Option<u8>,
    pub iso_interval: Option<i64>,
    pub central_to_peripheral_params: Option<CisUnidirectionalParams>,
    pub peripheral_to_central_params: Option<CisUnidirectionalParams>,
    /* private fields */
}Expand description
Established configuration for a single CIS.
Fields§
§cig_sync_delay: Option<i64>Maximum time for transmission of PDUs of all CISes in a CIG event. In the range [234, 8388607] microseconds.
This field is always present.
cis_sync_delay: Option<i64>The maximum time for transmission of PDUs of the specified CIS in a CIG event. In the range [234, 8388607] microseconds.
This field is always present.
max_subevents: Option<u8>Maximum number of subevents in each CIS event.
This field is always present.
iso_interval: Option<i64>Time between two consecutive CIS anchor points, in the range [5ms, 4s]
This field is always present.
central_to_peripheral_params: Option<CisUnidirectionalParams>Parameters for Central => Peripheral transmissions, if applicable.
This field is present if the stream includes isochronous data transmission from the Central to the Peripheral.
peripheral_to_central_params: Option<CisUnidirectionalParams>Parameters for Peripheral => Central transmissions, if applicable.
This field is present if the stream includes isochronous data transmission from the Peripheral to the Central.
Trait Implementations§
Source§impl Clone for CisEstablishedParameters
 
impl Clone for CisEstablishedParameters
Source§fn clone(&self) -> CisEstablishedParameters
 
fn clone(&self) -> CisEstablishedParameters
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CisEstablishedParameters
 
impl Debug for CisEstablishedParameters
Source§impl<D> Decode<CisEstablishedParameters, D> for CisEstablishedParameterswhere
    D: ResourceDialect,
 
impl<D> Decode<CisEstablishedParameters, D> for CisEstablishedParameterswhere
    D: ResourceDialect,
Source§fn new_empty() -> CisEstablishedParameters
 
fn new_empty() -> CisEstablishedParameters
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl Default for CisEstablishedParameters
 
impl Default for CisEstablishedParameters
Source§fn default() -> CisEstablishedParameters
 
fn default() -> CisEstablishedParameters
Source§impl<D> Encode<CisEstablishedParameters, D> for &CisEstablishedParameterswhere
    D: ResourceDialect,
 
impl<D> Encode<CisEstablishedParameters, D> for &CisEstablishedParameterswhere
    D: ResourceDialect,
Source§impl PartialEq for CisEstablishedParameters
 
impl PartialEq for CisEstablishedParameters
Source§impl TypeMarker for CisEstablishedParameters
 
impl TypeMarker for CisEstablishedParameters
Source§type Owned = CisEstablishedParameters
 
type Owned = CisEstablishedParameters
Source§fn inline_align(_context: Context) -> usize
 
fn inline_align(_context: Context) -> usize
Source§fn inline_size(_context: Context) -> usize
 
fn inline_size(_context: Context) -> usize
inline_align.Source§fn encode_is_copy() -> bool
 
fn encode_is_copy() -> bool
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
 
fn decode_is_copy() -> bool
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Source§impl ValueTypeMarker for CisEstablishedParameters
 
impl ValueTypeMarker for CisEstablishedParameters
Source§type Borrowed<'a> = &'a CisEstablishedParameters
 
type Borrowed<'a> = &'a CisEstablishedParameters
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
    value: &<CisEstablishedParameters as TypeMarker>::Owned,
) -> <CisEstablishedParameters as ValueTypeMarker>::Borrowed<'_>
 
fn borrow( value: &<CisEstablishedParameters as TypeMarker>::Owned, ) -> <CisEstablishedParameters as ValueTypeMarker>::Borrowed<'_>
&Self::Owned to Self::Borrowed.