1use crate::__string_enum;
2
3#[derive(Debug, Clone, Default)]
4#[cfg_attr(test, derive(PartialEq))]
5pub enum BorderStyle {
6 Nil, #[default]
8 None, Single, Thick, Double, Dotted, Dashed, DotDash, DotDotDash, Triple, ThinThickSmallGap, ThickThinSmallGap, ThinThickThinSmallGap, ThinThickMediumGap, ThickThinMediumGap, ThinThickThinMediumGap, ThinThickLargeGap, ThickThinLargeGap, ThinThickThinLargeGap, Wave, DoubleWave, DashSmallGap, DashDotStroked, ThreeDEmboss, ThreeDEngrave, Outset, Inset, Apples, ArchedScallops, BabyPacifier, BabyRattle, Balloons3Colors, BalloonsHotAir, BasicBlackDashes, BasicBlackDots, BasicBlackSquares, BasicThinLines, BasicWhiteDashes, BasicWhiteDots, BasicWhiteSquares, BasicWideInline, BasicWideMidline, BasicWideOutline, Bats, Birds, BirdsFlight, Cabins, CakeSlice, CandyCorn, CelticKnotwork, CertificateBanner, ChainLink, ChampagneBottle, CheckedBarBlack, CheckedBarColor, Checkered, ChristmasTree, CirclesLines, CirclesRectangles, ClassicalWave, Clocks, Compass, Confetti, ConfettiGrays, ConfettiOutline, ConfettiStreamers, ConfettiWhite, CornerTriangles, CouponCutoutDashes, CouponCutoutDots, CrazyMaze, CreaturesButterfly, CreaturesFish, CreaturesInsects, CreaturesLadyBug, CrossStitch, Cup, DecoArch, DecoArchColor, DecoBlocks, DiamondsGray, DoubleD, DoubleDiamonds, Earth1, Earth2, EclipsingSquares1, EclipsingSquares2, EggsBlack, Fans, Film, Firecrackers, FlowersBlockPrint, FlowersDaisies, FlowersModern1, FlowersModern2, FlowersPansy, FlowersRedRose, FlowersRoses, FlowersTeacup, FlowersTiny, Gems, GingerbreadMan, Gradient, Handmade1, Handmade2, HeartBalloon, HeartGray, Hearts, HeebieJeebies, Holly, HouseFunky, Hypnotic, IceCreamCones, LightBulb, Lightning1, Lightning2, MapPins, MapleLeaf, MapleMuffins, Marquee, MarqueeToothed, Moons, Mosaic, MusicNotes, Northwest, Ovals, Packages, PalmsBlack, PalmsColor, PaperClips, Papyrus, PartyFavor, PartyGlass, Pencils, People, PeopleWaving, PeopleHats, Poinsettias, PostageStamp, Pumpkin1, PushPinNote2, PushPinNote1, Pyramids, PyramidsAbove, Quadrants, Rings, Safari, Sawtooth, SawtoothGray, ScaredCat, Seattle, ShadowedSquares, SharksTeeth, ShorebirdTracks, Skyrocket, SnowflakeFancy, Snowflakes, Sombrero, Southwest, Stars, StarsTop, Stars3d, StarsBlack, StarsShadowed, Sun, Swirligig, TornPaper, TornPaperBlack, Trees, TriangleParty, Triangles, Tribal1, Tribal2, Tribal3, Tribal4, Tribal5, Tribal6, TwistedLines1, TwistedLines2, Vine, Waveline, WeavingAngles, WeavingBraid, WeavingRibbon, WeavingStrips, WhiteFlowers, Woodwork, XIllusions, ZanyTriangles, ZigZag, ZigZagStitch, }
199
200__string_enum! {
201 BorderStyle {
202 Nil = "nil",
203 None = "none",
204 Single = "single",
205 Thick = "thick",
206 Double = "double",
207 Dotted = "dotted",
208 Dashed = "dashed",
209 DotDash = "dotDash",
210 DotDotDash = "dotDotDash",
211 Triple = "triple",
212 ThinThickSmallGap = "thinThickSmallGap",
213 ThickThinSmallGap = "thickThinSmallGap",
214 ThinThickThinSmallGap = "thinThickThinSmallGap",
215 ThinThickMediumGap = "thinThickMediumGap",
216 ThickThinMediumGap = "thickThinMediumGap",
217 ThinThickThinMediumGap = "thinThickThinMediumGap",
218 ThinThickLargeGap = "thinThickLargeGap",
219 ThickThinLargeGap = "thickThinLargeGap",
220 ThinThickThinLargeGap = "thinThickThinLargeGap",
221 Wave = "wave",
222 DoubleWave = "doubleWave",
223 DashSmallGap = "dashSmallGap",
224 DashDotStroked = "dashDotStroked",
225 ThreeDEmboss = "threeDEmboss",
226 ThreeDEngrave = "threeDEngrave",
227 Outset = "outset",
228 Inset = "inset",
229 Apples = "apples",
230 ArchedScallops = "archedScallops",
231 BabyPacifier = "babyPacifier",
232 BabyRattle = "babyRattle",
233 Balloons3Colors = "balloons3Colors",
234 BalloonsHotAir = "balloonsHotAir",
235 BasicBlackDashes = "basicBlackDashes",
236 BasicBlackDots = "basicBlackDots",
237 BasicBlackSquares = "basicBlackSquares",
238 BasicThinLines = "basicThinLines",
239 BasicWhiteDashes = "basicWhiteDashes",
240 BasicWhiteDots = "basicWhiteDots",
241 BasicWhiteSquares = "basicWhiteSquares",
242 BasicWideInline = "basicWideInline",
243 BasicWideMidline = "basicWideMidline",
244 BasicWideOutline = "basicWideOutline",
245 Bats = "bats",
246 Birds = "birds",
247 BirdsFlight = "birdsFlight",
248 Cabins = "cabins",
249 CakeSlice = "cakeSlice",
250 CandyCorn = "candyCorn",
251 CelticKnotwork = "celticKnotwork",
252 CertificateBanner = "certificateBanner",
253 ChainLink = "chainLink",
254 ChampagneBottle = "champagneBottle",
255 CheckedBarBlack = "checkedBarBlack",
256 CheckedBarColor = "checkedBarColor",
257 Checkered = "checkered",
258 ChristmasTree = "christmasTree",
259 CirclesLines = "circlesLines",
260 CirclesRectangles = "circlesRectangles",
261 ClassicalWave = "classicalWave",
262 Clocks = "clocks",
263 Compass = "compass",
264 Confetti = "confetti",
265 ConfettiGrays = "confettiGrays",
266 ConfettiOutline = "confettiOutline",
267 ConfettiStreamers = "confettiStreamers",
268 ConfettiWhite = "confettiWhite",
269 CornerTriangles = "cornerTriangles",
270 CouponCutoutDashes = "couponCutoutDashes",
271 CouponCutoutDots = "couponCutoutDots",
272 CrazyMaze = "crazyMaze",
273 CreaturesButterfly = "creaturesButterfly",
274 CreaturesFish = "creaturesFish",
275 CreaturesInsects = "creaturesInsects",
276 CreaturesLadyBug = "creaturesLadyBug",
277 CrossStitch = "crossStitch",
278 Cup = "cup",
279 DecoArch = "decoArch",
280 DecoArchColor = "decoArchColor",
281 DecoBlocks = "decoBlocks",
282 DiamondsGray = "diamondsGray",
283 DoubleD = "doubleD",
284 DoubleDiamonds = "doubleDiamonds",
285 Earth1 = "earth1",
286 Earth2 = "earth2",
287 EclipsingSquares1 = "eclipsingSquares1",
288 EclipsingSquares2 = "eclipsingSquares2",
289 EggsBlack = "eggsBlack",
290 Fans = "fans",
291 Film = "film",
292 Firecrackers = "firecrackers",
293 FlowersBlockPrint = "flowersBlockPrint",
294 FlowersDaisies = "flowersDaisies",
295 FlowersModern1 = "flowersModern1",
296 FlowersModern2 = "flowersModern2",
297 FlowersPansy = "flowersPansy",
298 FlowersRedRose = "flowersRedRose",
299 FlowersRoses = "flowersRoses",
300 FlowersTeacup = "flowersTeacup",
301 FlowersTiny = "flowersTiny",
302 Gems = "gems",
303 GingerbreadMan = "gingerbreadMan",
304 Gradient = "gradient",
305 Handmade1 = "handmade1",
306 Handmade2 = "handmade2",
307 HeartBalloon = "heartBalloon",
308 HeartGray = "heartGray",
309 Hearts = "hearts",
310 HeebieJeebies = "heebieJeebies",
311 Holly = "holly",
312 HouseFunky = "houseFunky",
313 Hypnotic = "hypnotic",
314 IceCreamCones = "iceCreamCones",
315 LightBulb = "lightBulb",
316 Lightning1 = "lightning1",
317 Lightning2 = "lightning2",
318 MapPins = "mapPins",
319 MapleLeaf = "mapleLeaf",
320 MapleMuffins = "mapleMuffins",
321 Marquee = "marquee",
322 MarqueeToothed = "marqueeToothed",
323 Moons = "moons",
324 Mosaic = "mosaic",
325 MusicNotes = "musicNotes",
326 Northwest = "northwest",
327 Ovals = "ovals",
328 Packages = "packages",
329 PalmsBlack = "palmsBlack",
330 PalmsColor = "palmsColor",
331 PaperClips = "paperClips",
332 Papyrus = "papyrus",
333 PartyFavor = "partyFavor",
334 PartyGlass = "partyGlass",
335 Pencils = "pencils",
336 People = "people",
337 PeopleWaving = "peopleWaving",
338 PeopleHats = "peopleHats",
339 Poinsettias = "poinsettias",
340 PostageStamp = "postageStamp",
341 Pumpkin1 = "pumpkin1",
342 PushPinNote2 = "pushPinNote2",
343 PushPinNote1 = "pushPinNote1",
344 Pyramids = "pyramids",
345 PyramidsAbove = "pyramidsAbove",
346 Quadrants = "quadrants",
347 Rings = "rings",
348 Safari = "safari",
349 Sawtooth = "sawtooth",
350 SawtoothGray = "sawtoothGray",
351 ScaredCat = "scaredCat",
352 Seattle = "seattle",
353 ShadowedSquares = "shadowedSquares",
354 SharksTeeth = "sharksTeeth",
355 ShorebirdTracks = "shorebirdTracks",
356 Skyrocket = "skyrocket",
357 SnowflakeFancy = "snowflakeFancy",
358 Snowflakes = "snowflakes",
359 Sombrero = "sombrero",
360 Southwest = "southwest",
361 Stars = "stars",
362 StarsTop = "starsTop",
363 Stars3d = "stars3d",
364 StarsBlack = "starsBlack",
365 StarsShadowed = "starsShadowed",
366 Sun = "sun",
367 Swirligig = "swirligig",
368 TornPaper = "tornPaper",
369 TornPaperBlack = "tornPaperBlack",
370 Trees = "trees",
371 TriangleParty = "triangleParty",
372 Triangles = "triangles",
373 Tribal1 = "tribal1",
374 Tribal2 = "tribal2",
375 Tribal3 = "tribal3",
376 Tribal4 = "tribal4",
377 Tribal5 = "tribal5",
378 Tribal6 = "tribal6",
379 TwistedLines1 = "twistedLines1",
380 TwistedLines2 = "twistedLines2",
381 Vine = "vine",
382 Waveline = "waveline",
383 WeavingAngles = "weavingAngles",
384 WeavingBraid = "weavingBraid",
385 WeavingRibbon = "weavingRibbon",
386 WeavingStrips = "weavingStrips",
387 WhiteFlowers = "whiteFlowers",
388 Woodwork = "woodwork",
389 XIllusions = "xIllusions",
390 ZanyTriangles = "zanyTriangles",
391 ZigZag = "zigZag",
392 ZigZagStitch = "zigZagStitch",
393 }
394}