pub struct PageMapResponse {
pub page_id: String,
pub revision: i64,
pub map_schema: i64,
pub viewport: Option<PageMapViewport>,
pub nodes: Vec<PageMapNode>,
pub edges: Vec<PageMapEdge>,
}Expand description
Full map read: GET /api/pages/{id}/map and PUT .../map/layout, which
also returns the whole (now-updated) map.
Fields§
§page_id: String§revision: i64§map_schema: i64§viewport: Option<PageMapViewport>§nodes: Vec<PageMapNode>§edges: Vec<PageMapEdge>Trait Implementations§
Source§impl Clone for PageMapResponse
impl Clone for PageMapResponse
Source§fn clone(&self) -> PageMapResponse
fn clone(&self) -> PageMapResponse
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 PageMapResponse
impl Debug for PageMapResponse
Source§impl<'de> Deserialize<'de> for PageMapResponse
impl<'de> Deserialize<'de> for PageMapResponse
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 PageMapResponse
impl RefUnwindSafe for PageMapResponse
impl Send for PageMapResponse
impl Sync for PageMapResponse
impl Unpin for PageMapResponse
impl UnsafeUnpin for PageMapResponse
impl UnwindSafe for PageMapResponse
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