doc: hide quit and ping command structs

This commit is contained in:
Dmitriy Pleshevskiy 2020-08-01 10:54:53 +03:00
parent 7e19f5b8d1
commit 83ddc16ce1
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
use super::StreamCommand; use super::StreamCommand;
use crate::result::*; use crate::result::*;
#[doc(hidden)]
#[derive(Debug, Default)] #[derive(Debug, Default)]
pub struct PingCommand; pub struct PingCommand;

View file

@ -1,6 +1,7 @@
use super::StreamCommand; use super::StreamCommand;
use crate::result::Result; use crate::result::Result;
#[doc(hidden)]
#[derive(Debug, Default)] #[derive(Debug, Default)]
pub struct QuitCommand; pub struct QuitCommand;