pub struct Pusher {
pub pushkey: String,
pub kind: PusherKind,
pub app_id: String,
pub app_display_name: String,
pub device_display_name: String,
pub profile_tag: Option<String>,
pub lang: String,
pub data: PusherData,
}Available on crate features
client or server only.Expand description
Defines a pusher.
To create an instance of this type, first create a PusherInit and convert it via
Pusher::from / .into().
Fields§
§pushkey: StringA unique identifier for this pusher.
The maximum allowed length is 512 bytes.
kind: PusherKindThe kind of the pusher.
app_id: StringA reverse-DNS style identifier for the application.
The maximum allowed length is 64 bytes.
app_display_name: StringA string that will allow the user to identify what application owns this pusher.
device_display_name: StringA string that will allow the user to identify what device owns this pusher.
profile_tag: Option<String>Determines which set of device specific rules this pusher executes.
lang: StringThe preferred language for receiving notifications (e.g. ‘en’ or ‘en-US’)
data: PusherDataInformation for the pusher implementation itself.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pusher
impl<'de> Deserialize<'de> for Pusher
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
Source§impl From<PusherInit> for Pusher
impl From<PusherInit> for Pusher
Source§fn from(init: PusherInit) -> Self
fn from(init: PusherInit) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Pusher
impl RefUnwindSafe for Pusher
impl Send for Pusher
impl Sync for Pusher
impl Unpin for Pusher
impl UnwindSafe for Pusher
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)