pub struct CreateChildArgs {
pub numbered_handles: Option<Vec<HandleInfo>>,
pub dynamic_offers: Option<Vec<Offer>>,
pub controller: Option<ServerEnd<Channel, Controller>>,
pub dictionary: Option<DictionaryRef>,
}
Fields§
§numbered_handles: Option<Vec<HandleInfo>>
§dynamic_offers: Option<Vec<Offer>>
§controller: Option<ServerEnd<Channel, Controller>>
§dictionary: Option<DictionaryRef>
Trait Implementations§
Source§impl Debug for CreateChildArgs
impl Debug for CreateChildArgs
Source§impl Encodable for CreateChildArgs
impl Encodable for CreateChildArgs
Source§type Encoded = WireCreateChildArgs
type Encoded = WireCreateChildArgs
The wire type for the value.
§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
encoding instead of calling
encode
. Read moreSource§impl<___E> Encode<___E> for CreateChildArgswhere
___E: Encoder + ?Sized + HandleEncoder,
impl<___E> Encode<___E> for CreateChildArgswhere
___E: Encoder + ?Sized + HandleEncoder,
Source§impl TakeFrom<WireCreateChildArgs> for CreateChildArgs
impl TakeFrom<WireCreateChildArgs> for CreateChildArgs
Source§fn take_from(from: &WireCreateChildArgs) -> Self
fn take_from(from: &WireCreateChildArgs) -> Self
Converts from the given
T
, taking any resources that can’t be cloned.§const COPY_OPTIMIZATION: CopyOptimization<Self> = _
const COPY_OPTIMIZATION: CopyOptimization<Self> = _
An optimization flag that allows the bytes of this type to be copied directly during
conversion instead of calling
take_from
. Read moreAuto Trait Implementations§
impl Freeze for CreateChildArgs
impl RefUnwindSafe for CreateChildArgs
impl Send for CreateChildArgs
impl Sync for CreateChildArgs
impl Unpin for CreateChildArgs
impl UnwindSafe for CreateChildArgs
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