pub struct DriveBridgeResponse {
pub schema_version: u8,
pub protocol_version: u8,
pub request_id: String,
pub action: String,
pub selector: Option<String>,
pub visible_only: bool,
pub ok: bool,
pub payload: Value,
pub error: Option<String>,
pub completed_at_unix_nanos: i64,
}Fields§
§schema_version: u8§protocol_version: u8§request_id: String§action: String§selector: Option<String>§visible_only: bool§ok: bool§payload: Value§error: Option<String>§completed_at_unix_nanos: i64Trait Implementations§
Source§impl Clone for DriveBridgeResponse
impl Clone for DriveBridgeResponse
Source§fn clone(&self) -> DriveBridgeResponse
fn clone(&self) -> DriveBridgeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DriveBridgeResponse
impl Debug for DriveBridgeResponse
Source§impl<'de> Deserialize<'de> for DriveBridgeResponse
impl<'de> Deserialize<'de> for DriveBridgeResponse
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
Auto Trait Implementations§
impl Freeze for DriveBridgeResponse
impl RefUnwindSafe for DriveBridgeResponse
impl Send for DriveBridgeResponse
impl Sync for DriveBridgeResponse
impl Unpin for DriveBridgeResponse
impl UnsafeUnpin for DriveBridgeResponse
impl UnwindSafe for DriveBridgeResponse
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