pub struct SurfaceReadResponse {
pub descriptor: SurfaceDescriptor,
pub interactions: Vec<InteractionDescriptor>,
pub data_sources: Vec<DataSourceDescriptor>,
}Expand description
Surface read payload used by frontend route rendering.
Fields§
§descriptor: SurfaceDescriptor§interactions: Vec<InteractionDescriptor>§data_sources: Vec<DataSourceDescriptor>Trait Implementations§
Source§impl Clone for SurfaceReadResponse
impl Clone for SurfaceReadResponse
Source§fn clone(&self) -> SurfaceReadResponse
fn clone(&self) -> SurfaceReadResponse
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 SurfaceReadResponse
impl Debug for SurfaceReadResponse
Source§impl<'de> Deserialize<'de> for SurfaceReadResponse
impl<'de> Deserialize<'de> for SurfaceReadResponse
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 SurfaceReadResponse
impl RefUnwindSafe for SurfaceReadResponse
impl Send for SurfaceReadResponse
impl Sync for SurfaceReadResponse
impl Unpin for SurfaceReadResponse
impl UnsafeUnpin for SurfaceReadResponse
impl UnwindSafe for SurfaceReadResponse
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