BloodPressureMeasurementStatus
public struct BloodPressureMeasurementStatus
extension BloodPressureMeasurementStatus: Hashable
extension BloodPressureMeasurementStatus: Equatable
Blood Pressure Measurement Status
-
Undocumented
See moreDeclaration
Swift
public enum PulseRateRange : UInt8, Hashable
-
Body Movement Detection
Declaration
Swift
private(set) public var bodyMovementDetected: Bool { get }
-
Cuff Fit To Loose Detection
Declaration
Swift
private(set) public var cuffTooLoose: Bool { get }
-
Irregular Pulse Detection
Declaration
Swift
private(set) public var irregularPulseDetected: Bool { get }
-
Pulse Rate Range
Declaration
Swift
private(set) public var pulseRate: PulseRateRange { get }
-
Improper Measurement Position Detection
Declaration
Swift
private(set) public var impropertPositionDetected: Bool { get }
-
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the
Hashable
protocol. 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
Never call
finalize()
onhasher
. Doing so may become a compile-time error in the future.Declaration
Swift
public func hash(into hasher: inout Hasher)
Parameters
hasher
The hasher to use when combining the components of this instance.
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
public static func == (lhs: BloodPressureMeasurementStatus, rhs: BloodPressureMeasurementStatus) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.