Struct k8s_openapi::api::flowcontrol::v1::FlowSchema
source · pub struct FlowSchema {
pub metadata: ObjectMeta,
pub spec: Option<FlowSchemaSpec>,
pub status: Option<FlowSchemaStatus>,
}
Expand description
FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a “flow distinguisher”.
Fields§
§metadata: ObjectMeta
metadata
is the standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
spec: Option<FlowSchemaSpec>
spec
is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
status: Option<FlowSchemaStatus>
status
is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
Trait Implementations§
source§impl Clone for FlowSchema
impl Clone for FlowSchema
source§fn clone(&self) -> FlowSchema
fn clone(&self) -> FlowSchema
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 FlowSchema
impl Debug for FlowSchema
source§impl DeepMerge for FlowSchema
impl DeepMerge for FlowSchema
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for FlowSchema
impl Default for FlowSchema
source§fn default() -> FlowSchema
fn default() -> FlowSchema
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FlowSchema
impl<'de> Deserialize<'de> for FlowSchema
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 ListableResource for FlowSchema
impl ListableResource for FlowSchema
source§impl Metadata for FlowSchema
impl Metadata for FlowSchema
source§impl PartialEq for FlowSchema
impl PartialEq for FlowSchema
source§impl Resource for FlowSchema
impl Resource for FlowSchema
source§const API_VERSION: &'static str = "flowcontrol.apiserver.k8s.io/v1"
const API_VERSION: &'static str = "flowcontrol.apiserver.k8s.io/v1"
The API version of the resource. This is a composite of
Resource::GROUP
and Resource::VERSION
(eg "apiextensions.k8s.io/v1beta1"
)
or just the version for resources without a group (eg "v1"
). Read moresource§const GROUP: &'static str = "flowcontrol.apiserver.k8s.io"
const GROUP: &'static str = "flowcontrol.apiserver.k8s.io"
The group of the resource, or the empty string if the resource doesn’t have a group.
source§const URL_PATH_SEGMENT: &'static str = "flowschemas"
const URL_PATH_SEGMENT: &'static str = "flowschemas"
The URL path segment used to construct URLs related to this resource. Read more
source§type Scope = ClusterResourceScope
type Scope = ClusterResourceScope
Indicates whether the resource is namespace-scoped or cluster-scoped or a subresource. Read more
source§impl Serialize for FlowSchema
impl Serialize for FlowSchema
impl StructuralPartialEq for FlowSchema
Auto Trait Implementations§
impl Freeze for FlowSchema
impl RefUnwindSafe for FlowSchema
impl Send for FlowSchema
impl Sync for FlowSchema
impl Unpin for FlowSchema
impl UnwindSafe for FlowSchema
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)