pub struct Method {
pub id: String,
pub short_name: Option<String>,
pub desc: Option<String>,
pub method_identifier: Option<u16>,
pub input_params: Vec<Parameter>,
pub return_params: Vec<Parameter>,
}Expand description
service:METHOD-TYPE https://www.asam.net/xml/fbx/services/fibex4services.xsd todo: check params… vs. spec
Fields§
§id: String§short_name: Option<String>§desc: Option<String>§method_identifier: Option<u16>§input_params: Vec<Parameter>§return_params: Vec<Parameter>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Method
impl RefUnwindSafe for Method
impl Send for Method
impl Sync for Method
impl Unpin for Method
impl UnwindSafe for Method
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