anime: prep rog-anime for publish, rename *all* AniMe~ to Anime

This commit is contained in:
Luke D Jones
2021-04-11 10:46:05 +12:00
parent e515741efa
commit 0657c6cc74
29 changed files with 476 additions and 383 deletions

View File

@@ -19,7 +19,7 @@
//!
//! …consequently `zbus-xmlgen` did not generate code for the above interfaces.
use rog_anime::AniMeDataBuffer;
use rog_anime::AnimeDataBuffer;
use zbus::{dbus_proxy, Connection, Result};
#[dbus_proxy(
@@ -60,7 +60,7 @@ impl<'a> AnimeProxy<'a> {
}
#[inline]
pub fn write(&self, input: AniMeDataBuffer) -> Result<()> {
pub fn write(&self, input: AnimeDataBuffer) -> Result<()> {
self.0.write(input.get())
}
}