Structure
    Region
public struct Region: Hashable  A value type wrapper for CLRegion. This type is necessary so that we can do equality checks
and write tests against its values.
Relationships
Conforms To
- Hashable
Initializers
        init(rawValue:)
    
    public init(rawValue: CLRegion)  
        init(identifier:notifyOnEntry:notifyOnExit:)
    
    public init(
    identifier: String,
    notifyOnEntry: Bool,
    notifyOnExit: Bool
  )  Properties
        rawValue
    
    public let rawValue: CLRegion? 
        identifier
    
    public var identifier: String
        notifyOnEntry
    
    public var notifyOnEntry: Bool
        notifyOnExit
    
    public var notifyOnExit: BoolMethods
        hash(into:)
    
    public func hash(into hasher: inout Hasher)  Operators
        ==
    
    public static func == (lhs: Self, rhs: Self) -> Bool