#[non_exhaustive]pub struct SubmitConfigSourceResponse {
pub service_config: Option<Service>,
/* private fields */
}Expand description
Response message for SubmitConfigSource method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.service_config: Option<Service>The generated service configuration.
Implementations§
Source§impl SubmitConfigSourceResponse
impl SubmitConfigSourceResponse
pub fn new() -> Self
Sourcepub fn set_service_config<T>(self, v: T) -> Self
pub fn set_service_config<T>(self, v: T) -> Self
Sets the value of service_config.
Sourcepub fn set_or_clear_service_config<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_service_config<T>(self, v: Option<T>) -> Self
Sets or clears the value of service_config.
Trait Implementations§
Source§impl Clone for SubmitConfigSourceResponse
impl Clone for SubmitConfigSourceResponse
Source§fn clone(&self) -> SubmitConfigSourceResponse
fn clone(&self) -> SubmitConfigSourceResponse
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 SubmitConfigSourceResponse
impl Debug for SubmitConfigSourceResponse
Source§impl Default for SubmitConfigSourceResponse
impl Default for SubmitConfigSourceResponse
Source§fn default() -> SubmitConfigSourceResponse
fn default() -> SubmitConfigSourceResponse
Returns the “default value” for a type. Read more
Source§impl Message for SubmitConfigSourceResponse
impl Message for SubmitConfigSourceResponse
impl StructuralPartialEq for SubmitConfigSourceResponse
Auto Trait Implementations§
impl Freeze for SubmitConfigSourceResponse
impl RefUnwindSafe for SubmitConfigSourceResponse
impl Send for SubmitConfigSourceResponse
impl Sync for SubmitConfigSourceResponse
impl Unpin for SubmitConfigSourceResponse
impl UnwindSafe for SubmitConfigSourceResponse
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