pub struct RealmTarget {
pub realm: Realm,
}Fields§
§realm: RealmImplementations§
Source§impl RealmTarget
impl RealmTarget
pub fn builder() -> RealmTargetBuilder
Source§impl RealmTarget
impl RealmTarget
pub const IDENTIFIER: &'static str = "script.RealmTarget"
pub const DOMAIN_DIRECTION: &'static str = "remote"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RealmTarget
impl Clone for RealmTarget
Source§fn clone(&self) -> RealmTarget
fn clone(&self) -> RealmTarget
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RealmTarget
impl Debug for RealmTarget
Source§impl<'de> Deserialize<'de> for RealmTarget
impl<'de> Deserialize<'de> for RealmTarget
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<RealmTarget> for Target
impl From<RealmTarget> for Target
Source§fn from(v: RealmTarget) -> Self
fn from(v: RealmTarget) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RealmTarget
impl PartialEq for RealmTarget
Source§impl Serialize for RealmTarget
impl Serialize for RealmTarget
Source§impl TryFrom<Target> for RealmTarget
impl TryFrom<Target> for RealmTarget
impl StructuralPartialEq for RealmTarget
Auto Trait Implementations§
impl Freeze for RealmTarget
impl RefUnwindSafe for RealmTarget
impl Send for RealmTarget
impl Sync for RealmTarget
impl Unpin for RealmTarget
impl UnsafeUnpin for RealmTarget
impl UnwindSafe for RealmTarget
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more