pub struct GetFindingResponse {
pub finding: Option<Finding>,
}
Expand description
The response to the request.
Fields§
§finding: Option<Finding>
A finding
object that contains finding details.
Trait Implementations§
Source§impl Clone for GetFindingResponse
impl Clone for GetFindingResponse
Source§fn clone(&self) -> GetFindingResponse
fn clone(&self) -> GetFindingResponse
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 GetFindingResponse
impl Debug for GetFindingResponse
Source§impl Default for GetFindingResponse
impl Default for GetFindingResponse
Source§fn default() -> GetFindingResponse
fn default() -> GetFindingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFindingResponse
impl<'de> Deserialize<'de> for GetFindingResponse
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 PartialEq for GetFindingResponse
impl PartialEq for GetFindingResponse
impl StructuralPartialEq for GetFindingResponse
Auto Trait Implementations§
impl Freeze for GetFindingResponse
impl RefUnwindSafe for GetFindingResponse
impl Send for GetFindingResponse
impl Sync for GetFindingResponse
impl Unpin for GetFindingResponse
impl UnwindSafe for GetFindingResponse
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