pub enum ProjectedHir {
Rpc(Specification),
Http(RestHirDocument),
JsonRpc(JsonRpcHirDocument),
}Expand description
Represents either the standard DDS/RPC HIR or the projected REST HIR.
Variants§
Trait Implementations§
Source§impl Clone for ProjectedHir
impl Clone for ProjectedHir
Source§fn clone(&self) -> ProjectedHir
fn clone(&self) -> ProjectedHir
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 ProjectedHir
impl Debug for ProjectedHir
Source§impl<'de> Deserialize<'de> for ProjectedHir
impl<'de> Deserialize<'de> for ProjectedHir
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 ProjectedHir
impl RefUnwindSafe for ProjectedHir
impl Send for ProjectedHir
impl Sync for ProjectedHir
impl Unpin for ProjectedHir
impl UnsafeUnpin for ProjectedHir
impl UnwindSafe for ProjectedHir
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