pub struct Eclipse {
pub plugin: String,
pub class: String,
pub method: String,
pub arguments: Vec<EclipseArgument>,
}Expand description
Represents the PDSC eclipse element
Defines an Eclipse plug-in invocation of the generator tool.
Fields§
§plugin: StringEclipse plug-in identifier (e.g. "com.vendor.generator")
class: StringFully-qualified Java class within the plug-in to invoke
method: StringMethod within the class to call
arguments: Vec<EclipseArgument>Arguments passed to the Eclipse plug-in method
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Eclipse
impl<'de> Deserialize<'de> for Eclipse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Eclipse
impl StructuralPartialEq for Eclipse
Auto Trait Implementations§
impl Freeze for Eclipse
impl RefUnwindSafe for Eclipse
impl Send for Eclipse
impl Sync for Eclipse
impl Unpin for Eclipse
impl UnsafeUnpin for Eclipse
impl UnwindSafe for Eclipse
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