#[non_exhaustive]pub struct GetErrorFrameRequest {
pub name: String,
pub view: ErrorFrameView,
/* private fields */
}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.name: StringRequired. The name of the frame to retrieve. Format: projects/{project}/locations/{location}/sources/{source}/errorFrames/{error_frame}
view: ErrorFrameViewOptional. An optional view mode to control the level of details for the frame. The default is a basic frame view.
Implementations§
Trait Implementations§
Source§impl Clone for GetErrorFrameRequest
impl Clone for GetErrorFrameRequest
Source§fn clone(&self) -> GetErrorFrameRequest
fn clone(&self) -> GetErrorFrameRequest
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 GetErrorFrameRequest
impl Debug for GetErrorFrameRequest
Source§impl Default for GetErrorFrameRequest
impl Default for GetErrorFrameRequest
Source§fn default() -> GetErrorFrameRequest
fn default() -> GetErrorFrameRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetErrorFrameRequest
impl Message for GetErrorFrameRequest
Source§impl PartialEq for GetErrorFrameRequest
impl PartialEq for GetErrorFrameRequest
impl StructuralPartialEq for GetErrorFrameRequest
Auto Trait Implementations§
impl Freeze for GetErrorFrameRequest
impl RefUnwindSafe for GetErrorFrameRequest
impl Send for GetErrorFrameRequest
impl Sync for GetErrorFrameRequest
impl Unpin for GetErrorFrameRequest
impl UnsafeUnpin for GetErrorFrameRequest
impl UnwindSafe for GetErrorFrameRequest
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