pub struct StubOp {
pub name: String,
pub return_type: String,
pub params: Vec<StubParam>,
pub oneway: bool,
}Expand description
Operation-Definition fuer Stub-Generation.
Fields§
§name: StringOperation-Name.
return_type: StringReturn-Type-Spec (void wenn keine).
params: Vec<StubParam>Parameter.
oneway: booloneway (Spec §7.4.16) — keine Reply erwartet.
Trait Implementations§
impl Eq for StubOp
impl StructuralPartialEq for StubOp
Auto Trait Implementations§
impl Freeze for StubOp
impl RefUnwindSafe for StubOp
impl Send for StubOp
impl Sync for StubOp
impl Unpin for StubOp
impl UnsafeUnpin for StubOp
impl UnwindSafe for StubOp
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