pub struct TestResponse {
pub ok: bool,
pub error: Option<String>,
pub response_metadata: Option<ResponseMetadata>,
pub url: Option<String>,
pub team: Option<String>,
pub user: Option<String>,
pub team_id: Option<String>,
pub user_id: Option<String>,
}Fields§
§ok: bool§error: Option<String>§response_metadata: Option<ResponseMetadata>§url: Option<String>§team: Option<String>§user: Option<String>§team_id: Option<String>§user_id: Option<String>Trait Implementations§
Source§impl Debug for TestResponse
impl Debug for TestResponse
Source§impl Default for TestResponse
impl Default for TestResponse
Source§fn default() -> TestResponse
fn default() -> TestResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestResponse
impl<'de> Deserialize<'de> for TestResponse
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 TestResponse
impl PartialEq for TestResponse
Source§impl Serialize for TestResponse
impl Serialize for TestResponse
impl StructuralPartialEq for TestResponse
Auto Trait Implementations§
impl Freeze for TestResponse
impl RefUnwindSafe for TestResponse
impl Send for TestResponse
impl Sync for TestResponse
impl Unpin for TestResponse
impl UnwindSafe for TestResponse
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