pub struct CopyResponseEntity {
pub connections: Option<Vec<VersionedConnection>>,
pub external_controller_service_references: Option<HashMap<String, Option<ExternalControllerServiceReference>>>,
pub funnels: Option<Vec<VersionedFunnel>>,
pub id: Option<String>,
pub input_ports: Option<Vec<VersionedPort>>,
pub labels: Option<Vec<VersionedLabel>>,
pub output_ports: Option<Vec<VersionedPort>>,
pub parameter_contexts: Option<HashMap<String, Option<VersionedParameterContext>>>,
pub parameter_providers: Option<HashMap<String, Option<ParameterProviderReference>>>,
pub process_groups: Option<Vec<VersionedProcessGroup>>,
pub processors: Option<Vec<VersionedProcessor>>,
pub remote_process_groups: Option<Vec<VersionedRemoteProcessGroup>>,
}Fields§
§connections: Option<Vec<VersionedConnection>>§external_controller_service_references: Option<HashMap<String, Option<ExternalControllerServiceReference>>>§funnels: Option<Vec<VersionedFunnel>>§id: Option<String>§input_ports: Option<Vec<VersionedPort>>§labels: Option<Vec<VersionedLabel>>§output_ports: Option<Vec<VersionedPort>>§parameter_contexts: Option<HashMap<String, Option<VersionedParameterContext>>>§parameter_providers: Option<HashMap<String, Option<ParameterProviderReference>>>§process_groups: Option<Vec<VersionedProcessGroup>>§processors: Option<Vec<VersionedProcessor>>§remote_process_groups: Option<Vec<VersionedRemoteProcessGroup>>Trait Implementations§
Source§impl Clone for CopyResponseEntity
impl Clone for CopyResponseEntity
Source§fn clone(&self) -> CopyResponseEntity
fn clone(&self) -> CopyResponseEntity
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 Debug for CopyResponseEntity
impl Debug for CopyResponseEntity
Source§impl Default for CopyResponseEntity
impl Default for CopyResponseEntity
Source§fn default() -> CopyResponseEntity
fn default() -> CopyResponseEntity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CopyResponseEntity
impl<'de> Deserialize<'de> for CopyResponseEntity
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 From<CopyResponseEntity> for CopyResponseEntity
impl From<CopyResponseEntity> for CopyResponseEntity
Source§fn from(v: CopyResponseEntity) -> Self
fn from(v: CopyResponseEntity) -> Self
Converts to this type from the input type.
Source§impl From<CopyResponseEntity> for CopyResponseEntity
impl From<CopyResponseEntity> for CopyResponseEntity
Source§fn from(v: CopyResponseEntity) -> Self
fn from(v: CopyResponseEntity) -> Self
Converts to this type from the input type.
Source§impl From<CopyResponseEntity> for CopyResponseEntity
impl From<CopyResponseEntity> for CopyResponseEntity
Source§fn from(v: CopyResponseEntity) -> Self
fn from(v: CopyResponseEntity) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CopyResponseEntity
impl RefUnwindSafe for CopyResponseEntity
impl Send for CopyResponseEntity
impl Sync for CopyResponseEntity
impl Unpin for CopyResponseEntity
impl UnsafeUnpin for CopyResponseEntity
impl UnwindSafe for CopyResponseEntity
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