pub struct BaseRealmInfo {
pub realm: Realm,
pub origin: String,
}Fields§
§realm: Realm§origin: StringImplementations§
Source§impl BaseRealmInfo
impl BaseRealmInfo
pub fn builder() -> BaseRealmInfoBuilder
Source§impl BaseRealmInfo
impl BaseRealmInfo
Source§impl BaseRealmInfo
impl BaseRealmInfo
pub const IDENTIFIER: &'static str = "script.BaseRealmInfo"
pub const DOMAIN_DIRECTION: &'static str = "local"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for BaseRealmInfo
impl Clone for BaseRealmInfo
Source§fn clone(&self) -> BaseRealmInfo
fn clone(&self) -> BaseRealmInfo
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 BaseRealmInfo
impl Debug for BaseRealmInfo
Source§impl<'de> Deserialize<'de> for BaseRealmInfo
impl<'de> Deserialize<'de> for BaseRealmInfo
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 PartialEq for BaseRealmInfo
impl PartialEq for BaseRealmInfo
Source§impl Serialize for BaseRealmInfo
impl Serialize for BaseRealmInfo
impl StructuralPartialEq for BaseRealmInfo
Auto Trait Implementations§
impl Freeze for BaseRealmInfo
impl RefUnwindSafe for BaseRealmInfo
impl Send for BaseRealmInfo
impl Sync for BaseRealmInfo
impl Unpin for BaseRealmInfo
impl UnsafeUnpin for BaseRealmInfo
impl UnwindSafe for BaseRealmInfo
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