pub struct GetProjectDetailsNonSqlTaskInput {
pub project_name: String,
pub project_location: String,
}
Expand description
Input for the task that reads configuration from project artifacts
Fields§
§project_name: String
Name of the migration project
project_location: String
A URL that points to the location to access project artifacts
Implementations§
Trait Implementations§
Source§impl Clone for GetProjectDetailsNonSqlTaskInput
impl Clone for GetProjectDetailsNonSqlTaskInput
Source§fn clone(&self) -> GetProjectDetailsNonSqlTaskInput
fn clone(&self) -> GetProjectDetailsNonSqlTaskInput
Returns a duplicate 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<'de> Deserialize<'de> for GetProjectDetailsNonSqlTaskInput
impl<'de> Deserialize<'de> for GetProjectDetailsNonSqlTaskInput
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
Source§impl PartialEq for GetProjectDetailsNonSqlTaskInput
impl PartialEq for GetProjectDetailsNonSqlTaskInput
Source§fn eq(&self, other: &GetProjectDetailsNonSqlTaskInput) -> bool
fn eq(&self, other: &GetProjectDetailsNonSqlTaskInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetProjectDetailsNonSqlTaskInput
Auto Trait Implementations§
impl Freeze for GetProjectDetailsNonSqlTaskInput
impl RefUnwindSafe for GetProjectDetailsNonSqlTaskInput
impl Send for GetProjectDetailsNonSqlTaskInput
impl Sync for GetProjectDetailsNonSqlTaskInput
impl Unpin for GetProjectDetailsNonSqlTaskInput
impl UnwindSafe for GetProjectDetailsNonSqlTaskInput
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