#[non_exhaustive]pub struct TransformationTool {
pub name: Option<TransformationToolName>,
pub description: Option<String>,
pub tranformation_tool_installation_link: Option<String>,
}
Expand description
Information of the transformation tool that can be used to migrate and modernize the application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<TransformationToolName>
Name of the tool.
description: Option<String>
Description of the tool.
tranformation_tool_installation_link: Option<String>
URL for installing the tool.
Implementations§
source§impl TransformationTool
impl TransformationTool
sourcepub fn name(&self) -> Option<&TransformationToolName>
pub fn name(&self) -> Option<&TransformationToolName>
Name of the tool.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the tool.
sourcepub fn tranformation_tool_installation_link(&self) -> Option<&str>
pub fn tranformation_tool_installation_link(&self) -> Option<&str>
URL for installing the tool.
source§impl TransformationTool
impl TransformationTool
sourcepub fn builder() -> TransformationToolBuilder
pub fn builder() -> TransformationToolBuilder
Creates a new builder-style object to manufacture TransformationTool
.
Trait Implementations§
source§impl Clone for TransformationTool
impl Clone for TransformationTool
source§fn clone(&self) -> TransformationTool
fn clone(&self) -> TransformationTool
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TransformationTool
impl Debug for TransformationTool
source§impl PartialEq for TransformationTool
impl PartialEq for TransformationTool
source§fn eq(&self, other: &TransformationTool) -> bool
fn eq(&self, other: &TransformationTool) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TransformationTool
Auto Trait Implementations§
impl RefUnwindSafe for TransformationTool
impl Send for TransformationTool
impl Sync for TransformationTool
impl Unpin for TransformationTool
impl UnwindSafe for TransformationTool
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.