pub struct DataBufferOverflowBuilder {
pub link_type: LinkType,
}Fields§
§link_type: LinkTypeImplementations§
Source§impl DataBufferOverflowBuilder
impl DataBufferOverflowBuilder
pub fn build(self) -> DataBufferOverflow
Trait Implementations§
Source§impl Debug for DataBufferOverflowBuilder
impl Debug for DataBufferOverflowBuilder
Source§impl From<DataBufferOverflowBuilder> for DataBufferOverflow
impl From<DataBufferOverflowBuilder> for DataBufferOverflow
Source§fn from(builder: DataBufferOverflowBuilder) -> DataBufferOverflow
fn from(builder: DataBufferOverflowBuilder) -> DataBufferOverflow
Converts to this type from the input type.
Source§impl From<DataBufferOverflowBuilder> for Event
impl From<DataBufferOverflowBuilder> for Event
Source§fn from(builder: DataBufferOverflowBuilder) -> Event
fn from(builder: DataBufferOverflowBuilder) -> Event
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DataBufferOverflowBuilder
impl RefUnwindSafe for DataBufferOverflowBuilder
impl Send for DataBufferOverflowBuilder
impl Sync for DataBufferOverflowBuilder
impl Unpin for DataBufferOverflowBuilder
impl UnwindSafe for DataBufferOverflowBuilder
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