File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,12 @@ extension Fetch {
143143 }
144144}
145145
146+ extension Fetch : CustomReflectable {
147+ public var customMirror : Mirror {
148+ Mirror ( reflecting: wrappedValue)
149+ }
150+ }
151+
146152extension Fetch : Equatable where Value: Equatable {
147153 public static func == ( lhs: Self , rhs: Self ) -> Bool {
148154 lhs. sharedReader == rhs. sharedReader
Original file line number Diff line number Diff line change @@ -345,6 +345,12 @@ extension FetchAll {
345345 }
346346}
347347
348+ extension FetchAll : CustomReflectable {
349+ public var customMirror : Mirror {
350+ Mirror ( reflecting: wrappedValue)
351+ }
352+ }
353+
348354extension FetchAll : Equatable where Element: Equatable {
349355 public static func == ( lhs: Self , rhs: Self ) -> Bool {
350356 lhs. sharedReader == rhs. sharedReader
Original file line number Diff line number Diff line change @@ -814,6 +814,12 @@ extension FetchOne {
814814 }
815815}
816816
817+ extension FetchOne : CustomReflectable {
818+ public var customMirror : Mirror {
819+ Mirror ( reflecting: wrappedValue)
820+ }
821+ }
822+
817823extension FetchOne : Equatable where Value: Equatable {
818824 public static func == ( lhs: Self , rhs: Self ) -> Bool {
819825 lhs. sharedReader == rhs. sharedReader
You can’t perform that action at this time.
0 commit comments