pub struct ReplyType {
pub name: String,
pub topic_name: String,
pub layout: ServiceLayout,
pub method: Option<String>,
pub members: Vec<StructMember>,
}Expand description
Reply wire data model. Analogous to RequestType.
Fields§
§name: StringComplete struct name.
topic_name: StringTopic name.
layout: ServiceLayoutLayout variant.
method: Option<String>Method name for enhanced; None for basic.
members: Vec<StructMember>Member list.
Trait Implementations§
impl StructuralPartialEq for ReplyType
Auto Trait Implementations§
impl Freeze for ReplyType
impl RefUnwindSafe for ReplyType
impl Send for ReplyType
impl Sync for ReplyType
impl Unpin for ReplyType
impl UnsafeUnpin for ReplyType
impl UnwindSafe for ReplyType
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