pub struct TxChannel<'a, T: ?Sized> { /* private fields */ }Expand description
TX channel handle.
Implementations§
Source§impl<'a, T: TxDevice + ?Sized> TxChannel<'a, T>
impl<'a, T: TxDevice + ?Sized> TxChannel<'a, T>
Sourcepub fn streamer(&self) -> Result<T::TxStreamer, Error>
pub fn streamer(&self) -> Result<T::TxStreamer, Error>
Create a single-channel TX streamer.
Sourcepub fn streamer_with_args(&self, args: Args) -> Result<T::TxStreamer, Error>
pub fn streamer_with_args(&self, args: Args) -> Result<T::TxStreamer, Error>
Create a single-channel TX streamer, using args.
Source§impl<'a, T: ChannelInfo + ?Sized> TxChannel<'a, T>
impl<'a, T: ChannelInfo + ?Sized> TxChannel<'a, T>
Sourcepub fn full_duplex(&self) -> Result<bool, Error>
pub fn full_duplex(&self) -> Result<bool, Error>
Full-duplex support for this TX channel.
Source§impl<'a, T: AntennaControl + ?Sized> TxChannel<'a, T>
impl<'a, T: AntennaControl + ?Sized> TxChannel<'a, T>
Source§impl<'a, T: AgcControl + ?Sized> TxChannel<'a, T>
impl<'a, T: AgcControl + ?Sized> TxChannel<'a, T>
Source§impl<'a, T: GainControl + ?Sized> TxChannel<'a, T>
impl<'a, T: GainControl + ?Sized> TxChannel<'a, T>
Source§impl<'a, T: FrequencyControl + ?Sized> TxChannel<'a, T>
impl<'a, T: FrequencyControl + ?Sized> TxChannel<'a, T>
Source§impl<'a, T: SampleRateControl + ?Sized> TxChannel<'a, T>
impl<'a, T: SampleRateControl + ?Sized> TxChannel<'a, T>
Sourcepub fn sample_rate(&self) -> SampleRate<'_, T>
pub fn sample_rate(&self) -> SampleRate<'_, T>
Sample-rate control.
Source§impl<'a, T: BandwidthControl + ?Sized> TxChannel<'a, T>
impl<'a, T: BandwidthControl + ?Sized> TxChannel<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for TxChannel<'a, T>where
T: ?Sized,
impl<'a, T> RefUnwindSafe for TxChannel<'a, T>where
T: RefUnwindSafe + ?Sized,
impl<'a, T> Send for TxChannel<'a, T>
impl<'a, T> Sync for TxChannel<'a, T>
impl<'a, T> Unpin for TxChannel<'a, T>where
T: ?Sized,
impl<'a, T> UnsafeUnpin for TxChannel<'a, T>where
T: ?Sized,
impl<'a, T> UnwindSafe for TxChannel<'a, T>where
T: RefUnwindSafe + ?Sized,
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