TabHistoryEntry

public struct TabHistoryEntry
extension TabHistoryEntry: Sendable
extension TabHistoryEntry: Equatable, Hashable

A received tab. Mis-named as the original intent was to keep the full “back” history for a tab, where this would be one such entry - but that never happened.

  • Declaration

    Swift

    public var title: String
  • url

    Declaration

    Swift

    public var url: String
  • Declaration

    Swift

    public var isPrivate: Bool
  • Declaration

    Swift

    public init(title: String, url: String, isPrivate: Bool = false)
  • Declaration

    Swift

    public static func == (lhs: TabHistoryEntry, rhs: TabHistoryEntry) -> Bool
  • Declaration

    Swift

    public func hash(into hasher: inout Hasher)