pub struct ControlPlane {
pub id: String,
pub url: String,
}Expand description
A control plane that a data flow reports back to. The url is the base
address used to build control-plane notification callbacks. Data flows
reference a control plane by its id (see DataFlow::control_plane_id).
Fields§
§id: String§url: StringImplementations§
Source§impl ControlPlane
impl ControlPlane
Sourcepub fn builder() -> ControlPlaneBuilder
pub fn builder() -> ControlPlaneBuilder
Create an instance of ControlPlane using the builder syntax
Trait Implementations§
Source§impl Clone for ControlPlane
impl Clone for ControlPlane
Source§fn clone(&self) -> ControlPlane
fn clone(&self) -> ControlPlane
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ControlPlane
impl Debug for ControlPlane
Source§impl PartialEq for ControlPlane
impl PartialEq for ControlPlane
impl StructuralPartialEq for ControlPlane
Auto Trait Implementations§
impl Freeze for ControlPlane
impl RefUnwindSafe for ControlPlane
impl Send for ControlPlane
impl Sync for ControlPlane
impl Unpin for ControlPlane
impl UnsafeUnpin for ControlPlane
impl UnwindSafe for ControlPlane
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