Struct k8s_openapi::api::admissionregistration::v1::ServiceReference
source · [−]pub struct ServiceReference {
pub name: String,
pub namespace: String,
pub path: Option<String>,
pub port: Option<i32>,
}
Expand description
ServiceReference holds a reference to Service.legacy.k8s.io
Fields
name: String
name
is the name of the service. Required
namespace: String
namespace
is the namespace of the service. Required
path: Option<String>
path
is an optional URL path which will be sent in any request to this service.
port: Option<i32>
If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. port
should be a valid port number (1-65535, inclusive).
Trait Implementations
sourceimpl Clone for ServiceReference
impl Clone for ServiceReference
sourcefn clone(&self) -> ServiceReference
fn clone(&self) -> ServiceReference
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ServiceReference
impl Debug for ServiceReference
sourceimpl Default for ServiceReference
impl Default for ServiceReference
sourcefn default() -> ServiceReference
fn default() -> ServiceReference
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ServiceReference
impl<'de> Deserialize<'de> for ServiceReference
sourcefn 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
sourceimpl PartialEq<ServiceReference> for ServiceReference
impl PartialEq<ServiceReference> for ServiceReference
sourcefn eq(&self, other: &ServiceReference) -> bool
fn eq(&self, other: &ServiceReference) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ServiceReference) -> bool
fn ne(&self, other: &ServiceReference) -> bool
This method tests for !=
.
sourceimpl Serialize for ServiceReference
impl Serialize for ServiceReference
impl StructuralPartialEq for ServiceReference
Auto Trait Implementations
impl RefUnwindSafe for ServiceReference
impl Send for ServiceReference
impl Sync for ServiceReference
impl Unpin for ServiceReference
impl UnwindSafe for ServiceReference
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more