pub struct TestRoleResponse {
pub messages: Option<Vec<String>>,
pub success: Option<String>,
}
Expand description
The TestRoleResponse
structure.
Fields§
§messages: Option<Vec<String>>
If the Success
element contains false
, this value is an array of one or more error messages that were generated during the test process.
success: Option<String>
If the operation is successful, this value is true
; otherwise, the value is false
.
Trait Implementations§
Source§impl Clone for TestRoleResponse
impl Clone for TestRoleResponse
Source§fn clone(&self) -> TestRoleResponse
fn clone(&self) -> TestRoleResponse
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 TestRoleResponse
impl Debug for TestRoleResponse
Source§impl Default for TestRoleResponse
impl Default for TestRoleResponse
Source§fn default() -> TestRoleResponse
fn default() -> TestRoleResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestRoleResponse
impl<'de> Deserialize<'de> for TestRoleResponse
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 TestRoleResponse
impl PartialEq for TestRoleResponse
impl StructuralPartialEq for TestRoleResponse
Auto Trait Implementations§
impl Freeze for TestRoleResponse
impl RefUnwindSafe for TestRoleResponse
impl Send for TestRoleResponse
impl Sync for TestRoleResponse
impl Unpin for TestRoleResponse
impl UnwindSafe for TestRoleResponse
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