Follow clippy

This commit is contained in:
Kitaiti Makoto 2022-03-07 03:48:55 +09:00
parent 05f4c186f4
commit 21a0059755

View file

@ -405,7 +405,7 @@ pub struct Hashtag07 {
impl Hashtag07 { impl Hashtag07 {
pub fn new() -> Self { pub fn new() -> Self {
Hashtag07 { Self {
href: None, href: None,
name: None, name: None,
inner: Object07::new(), inner: Object07::new(),
@ -416,11 +416,11 @@ impl Hashtag07 {
let href = inner.remove("href")?; let href = inner.remove("href")?;
let name = inner.remove("name")?; let name = inner.remove("name")?;
Ok(Hashtag07 { href, name, inner }) Ok(Self { href, name, inner })
} }
pub fn retracting(self) -> Result<Object07<HashtagType07>, serde_json::Error> { pub fn retracting(self) -> Result<Object07<HashtagType07>, serde_json::Error> {
let Hashtag07 { let Self {
href, href,
name, name,
mut inner, mut inner,
@ -482,12 +482,18 @@ pub trait HashtagExt: AsHashtag {
} }
} }
impl Default for Hashtag07 {
fn default() -> Self {
Self::new()
}
}
impl AsHashtag for Hashtag07 { impl AsHashtag for Hashtag07 {
fn hashtag_ref(&self) -> &Hashtag07 { fn hashtag_ref(&self) -> &Self {
self self
} }
fn hashtag_mut(&mut self) -> &mut Hashtag07 { fn hashtag_mut(&mut self) -> &mut Self {
self self
} }
} }