pub struct GetTree {
pub kind: String,
pub request_id: i64,
pub revision: Option<i64>,
}Expand description
The driver asking for a tree: the latest, or a held revision.
Fields§
§kind: StringWire discriminator (type on the wire).
request_id: i64Correlates a request with its answer.
revision: Option<i64>Render revision, strictly increasing per session.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GetTree
impl<'de> Deserialize<'de> for GetTree
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
impl Eq for GetTree
impl StructuralPartialEq for GetTree
Auto Trait Implementations§
impl Freeze for GetTree
impl RefUnwindSafe for GetTree
impl Send for GetTree
impl Sync for GetTree
impl Unpin for GetTree
impl UnsafeUnpin for GetTree
impl UnwindSafe for GetTree
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