ProgressData
public struct ProgressData : Equatable
Progress data type for file transfer.
-
Undocumented
Declaration
Swift
public let bytesTransferred: UInt32
-
Undocumented
Declaration
Swift
public let totalBytes: UInt32
-
Initializes a new
ProgressData
.Declaration
Swift
public init(bytesTransferred: UInt32, totalBytes: UInt32)
Parameters
bytesTransferred
The number of bytes already transferred.
totalBytes
The total bytes to transfer.
-
Declaration
Swift
public static func == (lhs: ProgressData, rhs: ProgressData) -> Bool