Empty structs

This commit is contained in:
veeso
2021-03-04 15:49:13 +01:00
parent 98861a6bbd
commit 4a8ea185e6
3 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ use super::{SerializerError, SerializerErrorKind, UserHosts};
use std::io::{Read, Write}; use std::io::{Read, Write};
pub struct BookmarkSerializer {} pub struct BookmarkSerializer;
impl BookmarkSerializer { impl BookmarkSerializer {
/// ### serialize /// ### serialize

View File

@@ -27,7 +27,7 @@ use super::{SerializerError, SerializerErrorKind, UserConfig};
use std::io::{Read, Write}; use std::io::{Read, Write};
pub struct ConfigSerializer {} pub struct ConfigSerializer;
impl ConfigSerializer { impl ConfigSerializer {
/// ### serialize /// ### serialize

View File

@@ -32,7 +32,7 @@ use std::time::Duration;
/// ///
/// InputHandler is the struct which runs a thread which waits for /// InputHandler is the struct which runs a thread which waits for
/// input events from the user and reports them through a receiver /// input events from the user and reports them through a receiver
pub(crate) struct InputHandler {} pub(crate) struct InputHandler;
impl InputHandler { impl InputHandler {
/// ### InputHandler /// ### InputHandler