struct AccountIDextension AccountID : Equatable, Hashable, Identifiable, SendableAn account ID that represents a 3P account.
-
Creates an
AccountIDwith the given realm and account.Declaration
Swift
init(account: String, realm: String)Parameters
accountThe account name.
realmThe realm of the account.
-
Creates an
AccountIDwith the given Google user ID.Declaration
Swift
init(googleUserID: String)Parameters
googleUserIDThe Google user ID.
-
A unique identifier for the account.
Declaration
Swift
var id: String { get } -
The realm to which the account belongs.
Declaration
Swift
var realm: String { get } -
The account name.
Declaration
Swift
var account: String { get } -
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the
Hashableprotocol. The components used for hashing must be the same as the components compared in your type’s==operator implementation. Callhasher.combine(_:)with each of these components.Important
In your implementation of
hash(into:), don’t callfinalize()on thehasherinstance provided, or replace it with a different instance. Doing so may become a compile-time error in the future.Declaration
Swift
func hash(into hasher: inout Hasher) -
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
aandb,a == bimplies thata != bisfalse.Declaration
Swift
static func == (lhs: AccountID, rhs: AccountID) -> BoolParameters
lhsA value to compare.
rhsAnother value to compare.