Other Structures

The following structures are available globally.

  • The space has changed, but we have not yet updated the list of known windows.

    See more

    Declaration

    Swift

    public struct SpaceWillChangeEvent : EventType
  • The space has changed, and the list of known windows is up to date.

    Note that this event may not correspond 1:1 with SpaceWillChangeEvent. In particular, if the space changes again before the list of known windows can be updated, SpaceWillChangeEvent will fire twice and this event will fire only once.

    See more

    Declaration

    Swift

    public struct SpaceDidChangeEvent : EventType
  • Undocumented

    See more

    Declaration

    Swift

    public struct FakeApplicationBuilder
  • Specifies that a Property has type T.

    Internally used by Swindler. You should not use this directly.

    See more

    Declaration

    Swift

    public struct OfType<T> : PropertyTypeSpec where T : Equatable
  • Specifies that a Property has type T, and should use a default value if the property is missing.

    Internally used by Swindler. You should not use this directly.

    See more

    Declaration

    Swift

    public struct OfDefaultedType<T> : PropertyTypeSpec where T : Equatable, T : Defaultable
  • Used to specify that a Property has the type T?.

    Internally used by Swindler. You should not use this directly.

    See more

    Declaration

    Swift

    public struct OfOptionalType<T> : PropertyTypeSpec where T : Equatable