pub struct RtlSdrEncode { /* private fields */ }Expand description
Encode Complex I/Q into RTL-SDR’s byte based format.
Implementations§
Source§impl RtlSdrEncode
impl RtlSdrEncode
pub fn new( src: ReadStream<Complex>, ) -> (Self, <WriteStream<u8> as StreamReadSide>::ReadSide)
Trait Implementations§
Source§impl Block for RtlSdrEncode
impl Block for RtlSdrEncode
Source§impl BlockName for RtlSdrEncode
impl BlockName for RtlSdrEncode
Source§fn block_name(&self) -> &str
fn block_name(&self) -> &str
Name of block Read more
Auto Trait Implementations§
impl Freeze for RtlSdrEncode
impl RefUnwindSafe for RtlSdrEncode
impl Send for RtlSdrEncode
impl Sync for RtlSdrEncode
impl Unpin for RtlSdrEncode
impl UnsafeUnpin for RtlSdrEncode
impl UnwindSafe for RtlSdrEncode
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