4
0

aya-obj.txt 716 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372
  1. pub mod aya_obj
  2. pub mod aya_obj::btf
  3. pub enum aya_obj::btf::BtfError
  4. pub aya_obj::btf::BtfError::FileError
  5. pub aya_obj::btf::BtfError::FileError::error: std::io::error::Error
  6. pub aya_obj::btf::BtfError::FileError::path: std::path::PathBuf
  7. pub aya_obj::btf::BtfError::InvalidDatasec
  8. pub aya_obj::btf::BtfError::InvalidHeader
  9. pub aya_obj::btf::BtfError::InvalidInfo
  10. pub aya_obj::btf::BtfError::InvalidInfo::len: usize
  11. pub aya_obj::btf::BtfError::InvalidInfo::offset: usize
  12. pub aya_obj::btf::BtfError::InvalidInfo::section_len: usize
  13. pub aya_obj::btf::BtfError::InvalidLineInfo
  14. pub aya_obj::btf::BtfError::InvalidLineInfo::len: usize
  15. pub aya_obj::btf::BtfError::InvalidLineInfo::offset: usize
  16. pub aya_obj::btf::BtfError::InvalidLineInfo::section_len: usize
  17. pub aya_obj::btf::BtfError::InvalidRelocationInfo
  18. pub aya_obj::btf::BtfError::InvalidRelocationKind
  19. pub aya_obj::btf::BtfError::InvalidRelocationKind::kind: u32
  20. pub aya_obj::btf::BtfError::InvalidStringOffset
  21. pub aya_obj::btf::BtfError::InvalidStringOffset::offset: usize
  22. pub aya_obj::btf::BtfError::InvalidSymbolName
  23. pub aya_obj::btf::BtfError::InvalidTypeInfo
  24. pub aya_obj::btf::BtfError::InvalidTypeKind
  25. pub aya_obj::btf::BtfError::InvalidTypeKind::kind: u32
  26. pub aya_obj::btf::BtfError::LoadError
  27. pub aya_obj::btf::BtfError::LoadError::io_error: std::io::error::Error
  28. pub aya_obj::btf::BtfError::LoadError::verifier_log: aya_obj::VerifierLog
  29. pub aya_obj::btf::BtfError::MaximumTypeDepthReached
  30. pub aya_obj::btf::BtfError::MaximumTypeDepthReached::type_id: u32
  31. pub aya_obj::btf::BtfError::SymbolOffsetNotFound
  32. pub aya_obj::btf::BtfError::SymbolOffsetNotFound::symbol_name: alloc::string::String
  33. pub aya_obj::btf::BtfError::UnexpectedBtfType
  34. pub aya_obj::btf::BtfError::UnexpectedBtfType::type_id: u32
  35. pub aya_obj::btf::BtfError::UnknownBtfType
  36. pub aya_obj::btf::BtfError::UnknownBtfType::type_id: u32
  37. pub aya_obj::btf::BtfError::UnknownBtfTypeName
  38. pub aya_obj::btf::BtfError::UnknownBtfTypeName::type_name: alloc::string::String
  39. pub aya_obj::btf::BtfError::UnknownSectionSize
  40. pub aya_obj::btf::BtfError::UnknownSectionSize::section_name: alloc::string::String
  41. impl core::convert::From<aya_obj::btf::BtfError> for aya_obj::ParseError
  42. pub fn aya_obj::ParseError::from(source: aya_obj::btf::BtfError) -> Self
  43. impl core::error::Error for aya_obj::btf::BtfError
  44. pub fn aya_obj::btf::BtfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  45. impl core::fmt::Debug for aya_obj::btf::BtfError
  46. pub fn aya_obj::btf::BtfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  47. impl core::fmt::Display for aya_obj::btf::BtfError
  48. pub fn aya_obj::btf::BtfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  49. impl core::marker::Freeze for aya_obj::btf::BtfError
  50. impl core::marker::Send for aya_obj::btf::BtfError
  51. impl core::marker::Sync for aya_obj::btf::BtfError
  52. impl core::marker::Unpin for aya_obj::btf::BtfError
  53. impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfError
  54. impl !core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfError
  55. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfError where U: core::convert::From<T>
  56. pub fn aya_obj::btf::BtfError::into(self) -> U
  57. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfError where U: core::convert::Into<T>
  58. pub type aya_obj::btf::BtfError::Error = core::convert::Infallible
  59. pub fn aya_obj::btf::BtfError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  60. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfError where U: core::convert::TryFrom<T>
  61. pub type aya_obj::btf::BtfError::Error = <U as core::convert::TryFrom<T>>::Error
  62. pub fn aya_obj::btf::BtfError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  63. impl<T> alloc::string::ToString for aya_obj::btf::BtfError where T: core::fmt::Display + core::marker::Sized
  64. pub fn aya_obj::btf::BtfError::to_string(&self) -> alloc::string::String
  65. impl<T> core::any::Any for aya_obj::btf::BtfError where T: 'static + core::marker::Sized
  66. pub fn aya_obj::btf::BtfError::type_id(&self) -> core::any::TypeId
  67. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfError where T: core::marker::Sized
  68. pub fn aya_obj::btf::BtfError::borrow(&self) -> &T
  69. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfError where T: core::marker::Sized
  70. pub fn aya_obj::btf::BtfError::borrow_mut(&mut self) -> &mut T
  71. impl<T> core::convert::From<T> for aya_obj::btf::BtfError
  72. pub fn aya_obj::btf::BtfError::from(t: T) -> T
  73. #[repr(u32)] pub enum aya_obj::btf::BtfKind
  74. pub aya_obj::btf::BtfKind::Array = 3
  75. pub aya_obj::btf::BtfKind::Const = 10
  76. pub aya_obj::btf::BtfKind::DataSec = 15
  77. pub aya_obj::btf::BtfKind::DeclTag = 17
  78. pub aya_obj::btf::BtfKind::Enum = 6
  79. pub aya_obj::btf::BtfKind::Enum64 = 19
  80. pub aya_obj::btf::BtfKind::Float = 16
  81. pub aya_obj::btf::BtfKind::Func = 12
  82. pub aya_obj::btf::BtfKind::FuncProto = 13
  83. pub aya_obj::btf::BtfKind::Fwd = 7
  84. pub aya_obj::btf::BtfKind::Int = 1
  85. pub aya_obj::btf::BtfKind::Ptr = 2
  86. pub aya_obj::btf::BtfKind::Restrict = 11
  87. pub aya_obj::btf::BtfKind::Struct = 4
  88. pub aya_obj::btf::BtfKind::TypeTag = 18
  89. pub aya_obj::btf::BtfKind::Typedef = 8
  90. pub aya_obj::btf::BtfKind::Union = 5
  91. pub aya_obj::btf::BtfKind::Unknown = 0
  92. pub aya_obj::btf::BtfKind::Var = 14
  93. pub aya_obj::btf::BtfKind::Volatile = 9
  94. impl core::clone::Clone for aya_obj::btf::BtfKind
  95. pub fn aya_obj::btf::BtfKind::clone(&self) -> aya_obj::btf::BtfKind
  96. impl core::cmp::Eq for aya_obj::btf::BtfKind
  97. impl core::cmp::PartialEq for aya_obj::btf::BtfKind
  98. pub fn aya_obj::btf::BtfKind::eq(&self, other: &aya_obj::btf::BtfKind) -> bool
  99. impl core::convert::TryFrom<u32> for aya_obj::btf::BtfKind
  100. pub type aya_obj::btf::BtfKind::Error = aya_obj::btf::BtfError
  101. pub fn aya_obj::btf::BtfKind::try_from(v: u32) -> core::result::Result<Self, Self::Error>
  102. impl core::default::Default for aya_obj::btf::BtfKind
  103. pub fn aya_obj::btf::BtfKind::default() -> aya_obj::btf::BtfKind
  104. impl core::fmt::Debug for aya_obj::btf::BtfKind
  105. pub fn aya_obj::btf::BtfKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  106. impl core::fmt::Display for aya_obj::btf::BtfKind
  107. pub fn aya_obj::btf::BtfKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  108. impl core::marker::Copy for aya_obj::btf::BtfKind
  109. impl core::marker::StructuralPartialEq for aya_obj::btf::BtfKind
  110. impl core::marker::Freeze for aya_obj::btf::BtfKind
  111. impl core::marker::Send for aya_obj::btf::BtfKind
  112. impl core::marker::Sync for aya_obj::btf::BtfKind
  113. impl core::marker::Unpin for aya_obj::btf::BtfKind
  114. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfKind
  115. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfKind
  116. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfKind where U: core::convert::From<T>
  117. pub fn aya_obj::btf::BtfKind::into(self) -> U
  118. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfKind where U: core::convert::Into<T>
  119. pub type aya_obj::btf::BtfKind::Error = core::convert::Infallible
  120. pub fn aya_obj::btf::BtfKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  121. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfKind where U: core::convert::TryFrom<T>
  122. pub type aya_obj::btf::BtfKind::Error = <U as core::convert::TryFrom<T>>::Error
  123. pub fn aya_obj::btf::BtfKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  124. impl<T> alloc::borrow::ToOwned for aya_obj::btf::BtfKind where T: core::clone::Clone
  125. pub type aya_obj::btf::BtfKind::Owned = T
  126. pub fn aya_obj::btf::BtfKind::clone_into(&self, target: &mut T)
  127. pub fn aya_obj::btf::BtfKind::to_owned(&self) -> T
  128. impl<T> alloc::string::ToString for aya_obj::btf::BtfKind where T: core::fmt::Display + core::marker::Sized
  129. pub fn aya_obj::btf::BtfKind::to_string(&self) -> alloc::string::String
  130. impl<T> core::any::Any for aya_obj::btf::BtfKind where T: 'static + core::marker::Sized
  131. pub fn aya_obj::btf::BtfKind::type_id(&self) -> core::any::TypeId
  132. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfKind where T: core::marker::Sized
  133. pub fn aya_obj::btf::BtfKind::borrow(&self) -> &T
  134. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfKind where T: core::marker::Sized
  135. pub fn aya_obj::btf::BtfKind::borrow_mut(&mut self) -> &mut T
  136. impl<T> core::clone::CloneToUninit for aya_obj::btf::BtfKind where T: core::clone::Clone
  137. pub unsafe fn aya_obj::btf::BtfKind::clone_to_uninit(&self, dst: *mut T)
  138. impl<T> core::clone::CloneToUninit for aya_obj::btf::BtfKind where T: core::marker::Copy
  139. pub unsafe fn aya_obj::btf::BtfKind::clone_to_uninit(&self, dst: *mut T)
  140. impl<T> core::convert::From<T> for aya_obj::btf::BtfKind
  141. pub fn aya_obj::btf::BtfKind::from(t: T) -> T
  142. pub enum aya_obj::btf::BtfType
  143. pub aya_obj::btf::BtfType::Array(aya_obj::btf::Array)
  144. pub aya_obj::btf::BtfType::Const(aya_obj::btf::Const)
  145. pub aya_obj::btf::BtfType::DataSec(aya_obj::btf::DataSec)
  146. pub aya_obj::btf::BtfType::DeclTag(aya_obj::btf::DeclTag)
  147. pub aya_obj::btf::BtfType::Enum(aya_obj::btf::Enum)
  148. pub aya_obj::btf::BtfType::Enum64(aya_obj::btf::Enum64)
  149. pub aya_obj::btf::BtfType::Float(aya_obj::btf::Float)
  150. pub aya_obj::btf::BtfType::Func(aya_obj::btf::Func)
  151. pub aya_obj::btf::BtfType::FuncProto(aya_obj::btf::FuncProto)
  152. pub aya_obj::btf::BtfType::Fwd(aya_obj::btf::Fwd)
  153. pub aya_obj::btf::BtfType::Int(aya_obj::btf::Int)
  154. pub aya_obj::btf::BtfType::Ptr(aya_obj::btf::Ptr)
  155. pub aya_obj::btf::BtfType::Restrict(aya_obj::btf::Restrict)
  156. pub aya_obj::btf::BtfType::Struct(aya_obj::btf::Struct)
  157. pub aya_obj::btf::BtfType::TypeTag(aya_obj::btf::TypeTag)
  158. pub aya_obj::btf::BtfType::Typedef(aya_obj::btf::Typedef)
  159. pub aya_obj::btf::BtfType::Union(aya_obj::btf::Union)
  160. pub aya_obj::btf::BtfType::Unknown
  161. pub aya_obj::btf::BtfType::Var(aya_obj::btf::Var)
  162. pub aya_obj::btf::BtfType::Volatile(aya_obj::btf::Volatile)
  163. impl core::clone::Clone for aya_obj::btf::BtfType
  164. pub fn aya_obj::btf::BtfType::clone(&self) -> aya_obj::btf::BtfType
  165. impl core::fmt::Debug for aya_obj::btf::BtfType
  166. pub fn aya_obj::btf::BtfType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  167. impl core::marker::Freeze for aya_obj::btf::BtfType
  168. impl core::marker::Send for aya_obj::btf::BtfType
  169. impl core::marker::Sync for aya_obj::btf::BtfType
  170. impl core::marker::Unpin for aya_obj::btf::BtfType
  171. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfType
  172. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfType
  173. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfType where U: core::convert::From<T>
  174. pub fn aya_obj::btf::BtfType::into(self) -> U
  175. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfType where U: core::convert::Into<T>
  176. pub type aya_obj::btf::BtfType::Error = core::convert::Infallible
  177. pub fn aya_obj::btf::BtfType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  178. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfType where U: core::convert::TryFrom<T>
  179. pub type aya_obj::btf::BtfType::Error = <U as core::convert::TryFrom<T>>::Error
  180. pub fn aya_obj::btf::BtfType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  181. impl<T> alloc::borrow::ToOwned for aya_obj::btf::BtfType where T: core::clone::Clone
  182. pub type aya_obj::btf::BtfType::Owned = T
  183. pub fn aya_obj::btf::BtfType::clone_into(&self, target: &mut T)
  184. pub fn aya_obj::btf::BtfType::to_owned(&self) -> T
  185. impl<T> core::any::Any for aya_obj::btf::BtfType where T: 'static + core::marker::Sized
  186. pub fn aya_obj::btf::BtfType::type_id(&self) -> core::any::TypeId
  187. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfType where T: core::marker::Sized
  188. pub fn aya_obj::btf::BtfType::borrow(&self) -> &T
  189. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfType where T: core::marker::Sized
  190. pub fn aya_obj::btf::BtfType::borrow_mut(&mut self) -> &mut T
  191. impl<T> core::clone::CloneToUninit for aya_obj::btf::BtfType where T: core::clone::Clone
  192. pub unsafe fn aya_obj::btf::BtfType::clone_to_uninit(&self, dst: *mut T)
  193. impl<T> core::convert::From<T> for aya_obj::btf::BtfType
  194. pub fn aya_obj::btf::BtfType::from(t: T) -> T
  195. #[repr(u32)] pub enum aya_obj::btf::FuncLinkage
  196. pub aya_obj::btf::FuncLinkage::Extern = 2
  197. pub aya_obj::btf::FuncLinkage::Global = 1
  198. pub aya_obj::btf::FuncLinkage::Static = 0
  199. pub aya_obj::btf::FuncLinkage::Unknown
  200. impl core::clone::Clone for aya_obj::btf::FuncLinkage
  201. pub fn aya_obj::btf::FuncLinkage::clone(&self) -> aya_obj::btf::FuncLinkage
  202. impl core::cmp::Eq for aya_obj::btf::FuncLinkage
  203. impl core::cmp::PartialEq for aya_obj::btf::FuncLinkage
  204. pub fn aya_obj::btf::FuncLinkage::eq(&self, other: &aya_obj::btf::FuncLinkage) -> bool
  205. impl core::convert::From<u32> for aya_obj::btf::FuncLinkage
  206. pub fn aya_obj::btf::FuncLinkage::from(v: u32) -> Self
  207. impl core::fmt::Debug for aya_obj::btf::FuncLinkage
  208. pub fn aya_obj::btf::FuncLinkage::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  209. impl core::marker::StructuralPartialEq for aya_obj::btf::FuncLinkage
  210. impl core::marker::Freeze for aya_obj::btf::FuncLinkage
  211. impl core::marker::Send for aya_obj::btf::FuncLinkage
  212. impl core::marker::Sync for aya_obj::btf::FuncLinkage
  213. impl core::marker::Unpin for aya_obj::btf::FuncLinkage
  214. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncLinkage
  215. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncLinkage
  216. impl<T, U> core::convert::Into<U> for aya_obj::btf::FuncLinkage where U: core::convert::From<T>
  217. pub fn aya_obj::btf::FuncLinkage::into(self) -> U
  218. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::FuncLinkage where U: core::convert::Into<T>
  219. pub type aya_obj::btf::FuncLinkage::Error = core::convert::Infallible
  220. pub fn aya_obj::btf::FuncLinkage::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  221. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::FuncLinkage where U: core::convert::TryFrom<T>
  222. pub type aya_obj::btf::FuncLinkage::Error = <U as core::convert::TryFrom<T>>::Error
  223. pub fn aya_obj::btf::FuncLinkage::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  224. impl<T> alloc::borrow::ToOwned for aya_obj::btf::FuncLinkage where T: core::clone::Clone
  225. pub type aya_obj::btf::FuncLinkage::Owned = T
  226. pub fn aya_obj::btf::FuncLinkage::clone_into(&self, target: &mut T)
  227. pub fn aya_obj::btf::FuncLinkage::to_owned(&self) -> T
  228. impl<T> core::any::Any for aya_obj::btf::FuncLinkage where T: 'static + core::marker::Sized
  229. pub fn aya_obj::btf::FuncLinkage::type_id(&self) -> core::any::TypeId
  230. impl<T> core::borrow::Borrow<T> for aya_obj::btf::FuncLinkage where T: core::marker::Sized
  231. pub fn aya_obj::btf::FuncLinkage::borrow(&self) -> &T
  232. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::FuncLinkage where T: core::marker::Sized
  233. pub fn aya_obj::btf::FuncLinkage::borrow_mut(&mut self) -> &mut T
  234. impl<T> core::clone::CloneToUninit for aya_obj::btf::FuncLinkage where T: core::clone::Clone
  235. pub unsafe fn aya_obj::btf::FuncLinkage::clone_to_uninit(&self, dst: *mut T)
  236. impl<T> core::convert::From<T> for aya_obj::btf::FuncLinkage
  237. pub fn aya_obj::btf::FuncLinkage::from(t: T) -> T
  238. #[repr(u32)] pub enum aya_obj::btf::IntEncoding
  239. pub aya_obj::btf::IntEncoding::Bool = 4
  240. pub aya_obj::btf::IntEncoding::Char = 2
  241. pub aya_obj::btf::IntEncoding::None
  242. pub aya_obj::btf::IntEncoding::Signed = 1
  243. pub aya_obj::btf::IntEncoding::Unknown
  244. impl core::clone::Clone for aya_obj::btf::IntEncoding
  245. pub fn aya_obj::btf::IntEncoding::clone(&self) -> aya_obj::btf::IntEncoding
  246. impl core::cmp::Eq for aya_obj::btf::IntEncoding
  247. impl core::cmp::PartialEq for aya_obj::btf::IntEncoding
  248. pub fn aya_obj::btf::IntEncoding::eq(&self, other: &aya_obj::btf::IntEncoding) -> bool
  249. impl core::convert::From<u32> for aya_obj::btf::IntEncoding
  250. pub fn aya_obj::btf::IntEncoding::from(v: u32) -> Self
  251. impl core::fmt::Debug for aya_obj::btf::IntEncoding
  252. pub fn aya_obj::btf::IntEncoding::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  253. impl core::marker::StructuralPartialEq for aya_obj::btf::IntEncoding
  254. impl core::marker::Freeze for aya_obj::btf::IntEncoding
  255. impl core::marker::Send for aya_obj::btf::IntEncoding
  256. impl core::marker::Sync for aya_obj::btf::IntEncoding
  257. impl core::marker::Unpin for aya_obj::btf::IntEncoding
  258. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::IntEncoding
  259. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::IntEncoding
  260. impl<T, U> core::convert::Into<U> for aya_obj::btf::IntEncoding where U: core::convert::From<T>
  261. pub fn aya_obj::btf::IntEncoding::into(self) -> U
  262. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::IntEncoding where U: core::convert::Into<T>
  263. pub type aya_obj::btf::IntEncoding::Error = core::convert::Infallible
  264. pub fn aya_obj::btf::IntEncoding::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  265. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::IntEncoding where U: core::convert::TryFrom<T>
  266. pub type aya_obj::btf::IntEncoding::Error = <U as core::convert::TryFrom<T>>::Error
  267. pub fn aya_obj::btf::IntEncoding::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  268. impl<T> alloc::borrow::ToOwned for aya_obj::btf::IntEncoding where T: core::clone::Clone
  269. pub type aya_obj::btf::IntEncoding::Owned = T
  270. pub fn aya_obj::btf::IntEncoding::clone_into(&self, target: &mut T)
  271. pub fn aya_obj::btf::IntEncoding::to_owned(&self) -> T
  272. impl<T> core::any::Any for aya_obj::btf::IntEncoding where T: 'static + core::marker::Sized
  273. pub fn aya_obj::btf::IntEncoding::type_id(&self) -> core::any::TypeId
  274. impl<T> core::borrow::Borrow<T> for aya_obj::btf::IntEncoding where T: core::marker::Sized
  275. pub fn aya_obj::btf::IntEncoding::borrow(&self) -> &T
  276. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::IntEncoding where T: core::marker::Sized
  277. pub fn aya_obj::btf::IntEncoding::borrow_mut(&mut self) -> &mut T
  278. impl<T> core::clone::CloneToUninit for aya_obj::btf::IntEncoding where T: core::clone::Clone
  279. pub unsafe fn aya_obj::btf::IntEncoding::clone_to_uninit(&self, dst: *mut T)
  280. impl<T> core::convert::From<T> for aya_obj::btf::IntEncoding
  281. pub fn aya_obj::btf::IntEncoding::from(t: T) -> T
  282. #[repr(u32)] pub enum aya_obj::btf::VarLinkage
  283. pub aya_obj::btf::VarLinkage::Extern
  284. pub aya_obj::btf::VarLinkage::Global
  285. pub aya_obj::btf::VarLinkage::Static
  286. pub aya_obj::btf::VarLinkage::Unknown
  287. impl core::clone::Clone for aya_obj::btf::VarLinkage
  288. pub fn aya_obj::btf::VarLinkage::clone(&self) -> aya_obj::btf::VarLinkage
  289. impl core::cmp::Eq for aya_obj::btf::VarLinkage
  290. impl core::cmp::PartialEq for aya_obj::btf::VarLinkage
  291. pub fn aya_obj::btf::VarLinkage::eq(&self, other: &aya_obj::btf::VarLinkage) -> bool
  292. impl core::convert::From<u32> for aya_obj::btf::VarLinkage
  293. pub fn aya_obj::btf::VarLinkage::from(v: u32) -> Self
  294. impl core::fmt::Debug for aya_obj::btf::VarLinkage
  295. pub fn aya_obj::btf::VarLinkage::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  296. impl core::marker::StructuralPartialEq for aya_obj::btf::VarLinkage
  297. impl core::marker::Freeze for aya_obj::btf::VarLinkage
  298. impl core::marker::Send for aya_obj::btf::VarLinkage
  299. impl core::marker::Sync for aya_obj::btf::VarLinkage
  300. impl core::marker::Unpin for aya_obj::btf::VarLinkage
  301. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::VarLinkage
  302. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::VarLinkage
  303. impl<T, U> core::convert::Into<U> for aya_obj::btf::VarLinkage where U: core::convert::From<T>
  304. pub fn aya_obj::btf::VarLinkage::into(self) -> U
  305. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::VarLinkage where U: core::convert::Into<T>
  306. pub type aya_obj::btf::VarLinkage::Error = core::convert::Infallible
  307. pub fn aya_obj::btf::VarLinkage::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  308. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::VarLinkage where U: core::convert::TryFrom<T>
  309. pub type aya_obj::btf::VarLinkage::Error = <U as core::convert::TryFrom<T>>::Error
  310. pub fn aya_obj::btf::VarLinkage::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  311. impl<T> alloc::borrow::ToOwned for aya_obj::btf::VarLinkage where T: core::clone::Clone
  312. pub type aya_obj::btf::VarLinkage::Owned = T
  313. pub fn aya_obj::btf::VarLinkage::clone_into(&self, target: &mut T)
  314. pub fn aya_obj::btf::VarLinkage::to_owned(&self) -> T
  315. impl<T> core::any::Any for aya_obj::btf::VarLinkage where T: 'static + core::marker::Sized
  316. pub fn aya_obj::btf::VarLinkage::type_id(&self) -> core::any::TypeId
  317. impl<T> core::borrow::Borrow<T> for aya_obj::btf::VarLinkage where T: core::marker::Sized
  318. pub fn aya_obj::btf::VarLinkage::borrow(&self) -> &T
  319. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::VarLinkage where T: core::marker::Sized
  320. pub fn aya_obj::btf::VarLinkage::borrow_mut(&mut self) -> &mut T
  321. impl<T> core::clone::CloneToUninit for aya_obj::btf::VarLinkage where T: core::clone::Clone
  322. pub unsafe fn aya_obj::btf::VarLinkage::clone_to_uninit(&self, dst: *mut T)
  323. impl<T> core::convert::From<T> for aya_obj::btf::VarLinkage
  324. pub fn aya_obj::btf::VarLinkage::from(t: T) -> T
  325. #[repr(C)] pub struct aya_obj::btf::Array
  326. impl core::clone::Clone for aya_obj::btf::Array
  327. pub fn aya_obj::btf::Array::clone(&self) -> aya_obj::btf::Array
  328. impl core::fmt::Debug for aya_obj::btf::Array
  329. pub fn aya_obj::btf::Array::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  330. impl core::marker::Freeze for aya_obj::btf::Array
  331. impl core::marker::Send for aya_obj::btf::Array
  332. impl core::marker::Sync for aya_obj::btf::Array
  333. impl core::marker::Unpin for aya_obj::btf::Array
  334. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Array
  335. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Array
  336. impl<T, U> core::convert::Into<U> for aya_obj::btf::Array where U: core::convert::From<T>
  337. pub fn aya_obj::btf::Array::into(self) -> U
  338. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Array where U: core::convert::Into<T>
  339. pub type aya_obj::btf::Array::Error = core::convert::Infallible
  340. pub fn aya_obj::btf::Array::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  341. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Array where U: core::convert::TryFrom<T>
  342. pub type aya_obj::btf::Array::Error = <U as core::convert::TryFrom<T>>::Error
  343. pub fn aya_obj::btf::Array::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  344. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Array where T: core::clone::Clone
  345. pub type aya_obj::btf::Array::Owned = T
  346. pub fn aya_obj::btf::Array::clone_into(&self, target: &mut T)
  347. pub fn aya_obj::btf::Array::to_owned(&self) -> T
  348. impl<T> core::any::Any for aya_obj::btf::Array where T: 'static + core::marker::Sized
  349. pub fn aya_obj::btf::Array::type_id(&self) -> core::any::TypeId
  350. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Array where T: core::marker::Sized
  351. pub fn aya_obj::btf::Array::borrow(&self) -> &T
  352. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Array where T: core::marker::Sized
  353. pub fn aya_obj::btf::Array::borrow_mut(&mut self) -> &mut T
  354. impl<T> core::clone::CloneToUninit for aya_obj::btf::Array where T: core::clone::Clone
  355. pub unsafe fn aya_obj::btf::Array::clone_to_uninit(&self, dst: *mut T)
  356. impl<T> core::convert::From<T> for aya_obj::btf::Array
  357. pub fn aya_obj::btf::Array::from(t: T) -> T
  358. pub struct aya_obj::btf::Btf
  359. impl aya_obj::btf::Btf
  360. pub fn aya_obj::btf::Btf::add_string(&mut self, name: &str) -> u32
  361. pub fn aya_obj::btf::Btf::add_type(&mut self, btf_type: aya_obj::btf::BtfType) -> u32
  362. pub fn aya_obj::btf::Btf::from_sys_fs() -> core::result::Result<aya_obj::btf::Btf, aya_obj::btf::BtfError>
  363. pub fn aya_obj::btf::Btf::id_by_type_name_kind(&self, name: &str, kind: aya_obj::btf::BtfKind) -> core::result::Result<u32, aya_obj::btf::BtfError>
  364. pub fn aya_obj::btf::Btf::new() -> aya_obj::btf::Btf
  365. pub fn aya_obj::btf::Btf::parse(data: &[u8], endianness: object::endian::Endianness) -> core::result::Result<aya_obj::btf::Btf, aya_obj::btf::BtfError>
  366. pub fn aya_obj::btf::Btf::parse_file<P: core::convert::AsRef<std::path::Path>>(path: P, endianness: object::endian::Endianness) -> core::result::Result<aya_obj::btf::Btf, aya_obj::btf::BtfError>
  367. pub fn aya_obj::btf::Btf::to_bytes(&self) -> alloc::vec::Vec<u8>
  368. impl core::clone::Clone for aya_obj::btf::Btf
  369. pub fn aya_obj::btf::Btf::clone(&self) -> aya_obj::btf::Btf
  370. impl core::default::Default for aya_obj::btf::Btf
  371. pub fn aya_obj::btf::Btf::default() -> Self
  372. impl core::fmt::Debug for aya_obj::btf::Btf
  373. pub fn aya_obj::btf::Btf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  374. impl core::marker::Freeze for aya_obj::btf::Btf
  375. impl core::marker::Send for aya_obj::btf::Btf
  376. impl core::marker::Sync for aya_obj::btf::Btf
  377. impl core::marker::Unpin for aya_obj::btf::Btf
  378. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Btf
  379. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Btf
  380. impl<T, U> core::convert::Into<U> for aya_obj::btf::Btf where U: core::convert::From<T>
  381. pub fn aya_obj::btf::Btf::into(self) -> U
  382. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Btf where U: core::convert::Into<T>
  383. pub type aya_obj::btf::Btf::Error = core::convert::Infallible
  384. pub fn aya_obj::btf::Btf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  385. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Btf where U: core::convert::TryFrom<T>
  386. pub type aya_obj::btf::Btf::Error = <U as core::convert::TryFrom<T>>::Error
  387. pub fn aya_obj::btf::Btf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  388. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Btf where T: core::clone::Clone
  389. pub type aya_obj::btf::Btf::Owned = T
  390. pub fn aya_obj::btf::Btf::clone_into(&self, target: &mut T)
  391. pub fn aya_obj::btf::Btf::to_owned(&self) -> T
  392. impl<T> core::any::Any for aya_obj::btf::Btf where T: 'static + core::marker::Sized
  393. pub fn aya_obj::btf::Btf::type_id(&self) -> core::any::TypeId
  394. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Btf where T: core::marker::Sized
  395. pub fn aya_obj::btf::Btf::borrow(&self) -> &T
  396. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Btf where T: core::marker::Sized
  397. pub fn aya_obj::btf::Btf::borrow_mut(&mut self) -> &mut T
  398. impl<T> core::clone::CloneToUninit for aya_obj::btf::Btf where T: core::clone::Clone
  399. pub unsafe fn aya_obj::btf::Btf::clone_to_uninit(&self, dst: *mut T)
  400. impl<T> core::convert::From<T> for aya_obj::btf::Btf
  401. pub fn aya_obj::btf::Btf::from(t: T) -> T
  402. #[repr(C)] pub struct aya_obj::btf::BtfEnum
  403. pub aya_obj::btf::BtfEnum::name_offset: u32
  404. pub aya_obj::btf::BtfEnum::value: u32
  405. impl aya_obj::btf::BtfEnum
  406. pub fn aya_obj::btf::BtfEnum::new(name_offset: u32, value: u32) -> Self
  407. impl core::clone::Clone for aya_obj::btf::BtfEnum
  408. pub fn aya_obj::btf::BtfEnum::clone(&self) -> aya_obj::btf::BtfEnum
  409. impl core::fmt::Debug for aya_obj::btf::BtfEnum
  410. pub fn aya_obj::btf::BtfEnum::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  411. impl core::marker::Freeze for aya_obj::btf::BtfEnum
  412. impl core::marker::Send for aya_obj::btf::BtfEnum
  413. impl core::marker::Sync for aya_obj::btf::BtfEnum
  414. impl core::marker::Unpin for aya_obj::btf::BtfEnum
  415. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfEnum
  416. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfEnum
  417. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfEnum where U: core::convert::From<T>
  418. pub fn aya_obj::btf::BtfEnum::into(self) -> U
  419. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfEnum where U: core::convert::Into<T>
  420. pub type aya_obj::btf::BtfEnum::Error = core::convert::Infallible
  421. pub fn aya_obj::btf::BtfEnum::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  422. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfEnum where U: core::convert::TryFrom<T>
  423. pub type aya_obj::btf::BtfEnum::Error = <U as core::convert::TryFrom<T>>::Error
  424. pub fn aya_obj::btf::BtfEnum::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  425. impl<T> alloc::borrow::ToOwned for aya_obj::btf::BtfEnum where T: core::clone::Clone
  426. pub type aya_obj::btf::BtfEnum::Owned = T
  427. pub fn aya_obj::btf::BtfEnum::clone_into(&self, target: &mut T)
  428. pub fn aya_obj::btf::BtfEnum::to_owned(&self) -> T
  429. impl<T> core::any::Any for aya_obj::btf::BtfEnum where T: 'static + core::marker::Sized
  430. pub fn aya_obj::btf::BtfEnum::type_id(&self) -> core::any::TypeId
  431. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfEnum where T: core::marker::Sized
  432. pub fn aya_obj::btf::BtfEnum::borrow(&self) -> &T
  433. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfEnum where T: core::marker::Sized
  434. pub fn aya_obj::btf::BtfEnum::borrow_mut(&mut self) -> &mut T
  435. impl<T> core::clone::CloneToUninit for aya_obj::btf::BtfEnum where T: core::clone::Clone
  436. pub unsafe fn aya_obj::btf::BtfEnum::clone_to_uninit(&self, dst: *mut T)
  437. impl<T> core::convert::From<T> for aya_obj::btf::BtfEnum
  438. pub fn aya_obj::btf::BtfEnum::from(t: T) -> T
  439. #[repr(C)] pub struct aya_obj::btf::BtfEnum64
  440. impl aya_obj::btf::BtfEnum64
  441. pub fn aya_obj::btf::BtfEnum64::new(name_offset: u32, value: u64) -> Self
  442. impl core::clone::Clone for aya_obj::btf::BtfEnum64
  443. pub fn aya_obj::btf::BtfEnum64::clone(&self) -> aya_obj::btf::BtfEnum64
  444. impl core::fmt::Debug for aya_obj::btf::BtfEnum64
  445. pub fn aya_obj::btf::BtfEnum64::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  446. impl core::marker::Freeze for aya_obj::btf::BtfEnum64
  447. impl core::marker::Send for aya_obj::btf::BtfEnum64
  448. impl core::marker::Sync for aya_obj::btf::BtfEnum64
  449. impl core::marker::Unpin for aya_obj::btf::BtfEnum64
  450. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfEnum64
  451. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfEnum64
  452. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfEnum64 where U: core::convert::From<T>
  453. pub fn aya_obj::btf::BtfEnum64::into(self) -> U
  454. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfEnum64 where U: core::convert::Into<T>
  455. pub type aya_obj::btf::BtfEnum64::Error = core::convert::Infallible
  456. pub fn aya_obj::btf::BtfEnum64::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  457. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfEnum64 where U: core::convert::TryFrom<T>
  458. pub type aya_obj::btf::BtfEnum64::Error = <U as core::convert::TryFrom<T>>::Error
  459. pub fn aya_obj::btf::BtfEnum64::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  460. impl<T> alloc::borrow::ToOwned for aya_obj::btf::BtfEnum64 where T: core::clone::Clone
  461. pub type aya_obj::btf::BtfEnum64::Owned = T
  462. pub fn aya_obj::btf::BtfEnum64::clone_into(&self, target: &mut T)
  463. pub fn aya_obj::btf::BtfEnum64::to_owned(&self) -> T
  464. impl<T> core::any::Any for aya_obj::btf::BtfEnum64 where T: 'static + core::marker::Sized
  465. pub fn aya_obj::btf::BtfEnum64::type_id(&self) -> core::any::TypeId
  466. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfEnum64 where T: core::marker::Sized
  467. pub fn aya_obj::btf::BtfEnum64::borrow(&self) -> &T
  468. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfEnum64 where T: core::marker::Sized
  469. pub fn aya_obj::btf::BtfEnum64::borrow_mut(&mut self) -> &mut T
  470. impl<T> core::clone::CloneToUninit for aya_obj::btf::BtfEnum64 where T: core::clone::Clone
  471. pub unsafe fn aya_obj::btf::BtfEnum64::clone_to_uninit(&self, dst: *mut T)
  472. impl<T> core::convert::From<T> for aya_obj::btf::BtfEnum64
  473. pub fn aya_obj::btf::BtfEnum64::from(t: T) -> T
  474. pub struct aya_obj::btf::BtfExt
  475. impl core::clone::Clone for aya_obj::btf::BtfExt
  476. pub fn aya_obj::btf::BtfExt::clone(&self) -> aya_obj::btf::BtfExt
  477. impl core::fmt::Debug for aya_obj::btf::BtfExt
  478. pub fn aya_obj::btf::BtfExt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  479. impl core::marker::Freeze for aya_obj::btf::BtfExt
  480. impl core::marker::Send for aya_obj::btf::BtfExt
  481. impl core::marker::Sync for aya_obj::btf::BtfExt
  482. impl core::marker::Unpin for aya_obj::btf::BtfExt
  483. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfExt
  484. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfExt
  485. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfExt where U: core::convert::From<T>
  486. pub fn aya_obj::btf::BtfExt::into(self) -> U
  487. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfExt where U: core::convert::Into<T>
  488. pub type aya_obj::btf::BtfExt::Error = core::convert::Infallible
  489. pub fn aya_obj::btf::BtfExt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  490. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfExt where U: core::convert::TryFrom<T>
  491. pub type aya_obj::btf::BtfExt::Error = <U as core::convert::TryFrom<T>>::Error
  492. pub fn aya_obj::btf::BtfExt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  493. impl<T> alloc::borrow::ToOwned for aya_obj::btf::BtfExt where T: core::clone::Clone
  494. pub type aya_obj::btf::BtfExt::Owned = T
  495. pub fn aya_obj::btf::BtfExt::clone_into(&self, target: &mut T)
  496. pub fn aya_obj::btf::BtfExt::to_owned(&self) -> T
  497. impl<T> core::any::Any for aya_obj::btf::BtfExt where T: 'static + core::marker::Sized
  498. pub fn aya_obj::btf::BtfExt::type_id(&self) -> core::any::TypeId
  499. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfExt where T: core::marker::Sized
  500. pub fn aya_obj::btf::BtfExt::borrow(&self) -> &T
  501. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfExt where T: core::marker::Sized
  502. pub fn aya_obj::btf::BtfExt::borrow_mut(&mut self) -> &mut T
  503. impl<T> core::clone::CloneToUninit for aya_obj::btf::BtfExt where T: core::clone::Clone
  504. pub unsafe fn aya_obj::btf::BtfExt::clone_to_uninit(&self, dst: *mut T)
  505. impl<T> core::convert::From<T> for aya_obj::btf::BtfExt
  506. pub fn aya_obj::btf::BtfExt::from(t: T) -> T
  507. pub struct aya_obj::btf::BtfFeatures
  508. impl aya_obj::btf::BtfFeatures
  509. pub fn aya_obj::btf::BtfFeatures::btf_datasec(&self) -> bool
  510. pub fn aya_obj::btf::BtfFeatures::btf_decl_tag(&self) -> bool
  511. pub fn aya_obj::btf::BtfFeatures::btf_enum64(&self) -> bool
  512. pub fn aya_obj::btf::BtfFeatures::btf_float(&self) -> bool
  513. pub fn aya_obj::btf::BtfFeatures::btf_func(&self) -> bool
  514. pub fn aya_obj::btf::BtfFeatures::btf_func_global(&self) -> bool
  515. pub fn aya_obj::btf::BtfFeatures::btf_kind_func_proto(&self) -> bool
  516. pub fn aya_obj::btf::BtfFeatures::btf_type_tag(&self) -> bool
  517. impl core::default::Default for aya_obj::btf::BtfFeatures
  518. pub fn aya_obj::btf::BtfFeatures::default() -> aya_obj::btf::BtfFeatures
  519. impl core::fmt::Debug for aya_obj::btf::BtfFeatures
  520. pub fn aya_obj::btf::BtfFeatures::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  521. impl core::marker::Freeze for aya_obj::btf::BtfFeatures
  522. impl core::marker::Send for aya_obj::btf::BtfFeatures
  523. impl core::marker::Sync for aya_obj::btf::BtfFeatures
  524. impl core::marker::Unpin for aya_obj::btf::BtfFeatures
  525. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfFeatures
  526. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfFeatures
  527. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfFeatures where U: core::convert::From<T>
  528. pub fn aya_obj::btf::BtfFeatures::into(self) -> U
  529. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfFeatures where U: core::convert::Into<T>
  530. pub type aya_obj::btf::BtfFeatures::Error = core::convert::Infallible
  531. pub fn aya_obj::btf::BtfFeatures::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  532. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfFeatures where U: core::convert::TryFrom<T>
  533. pub type aya_obj::btf::BtfFeatures::Error = <U as core::convert::TryFrom<T>>::Error
  534. pub fn aya_obj::btf::BtfFeatures::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  535. impl<T> core::any::Any for aya_obj::btf::BtfFeatures where T: 'static + core::marker::Sized
  536. pub fn aya_obj::btf::BtfFeatures::type_id(&self) -> core::any::TypeId
  537. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfFeatures where T: core::marker::Sized
  538. pub fn aya_obj::btf::BtfFeatures::borrow(&self) -> &T
  539. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfFeatures where T: core::marker::Sized
  540. pub fn aya_obj::btf::BtfFeatures::borrow_mut(&mut self) -> &mut T
  541. impl<T> core::convert::From<T> for aya_obj::btf::BtfFeatures
  542. pub fn aya_obj::btf::BtfFeatures::from(t: T) -> T
  543. #[repr(C)] pub struct aya_obj::btf::BtfParam
  544. pub aya_obj::btf::BtfParam::btf_type: u32
  545. pub aya_obj::btf::BtfParam::name_offset: u32
  546. impl core::clone::Clone for aya_obj::btf::BtfParam
  547. pub fn aya_obj::btf::BtfParam::clone(&self) -> aya_obj::btf::BtfParam
  548. impl core::fmt::Debug for aya_obj::btf::BtfParam
  549. pub fn aya_obj::btf::BtfParam::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  550. impl core::marker::Freeze for aya_obj::btf::BtfParam
  551. impl core::marker::Send for aya_obj::btf::BtfParam
  552. impl core::marker::Sync for aya_obj::btf::BtfParam
  553. impl core::marker::Unpin for aya_obj::btf::BtfParam
  554. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfParam
  555. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfParam
  556. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfParam where U: core::convert::From<T>
  557. pub fn aya_obj::btf::BtfParam::into(self) -> U
  558. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfParam where U: core::convert::Into<T>
  559. pub type aya_obj::btf::BtfParam::Error = core::convert::Infallible
  560. pub fn aya_obj::btf::BtfParam::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  561. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfParam where U: core::convert::TryFrom<T>
  562. pub type aya_obj::btf::BtfParam::Error = <U as core::convert::TryFrom<T>>::Error
  563. pub fn aya_obj::btf::BtfParam::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  564. impl<T> alloc::borrow::ToOwned for aya_obj::btf::BtfParam where T: core::clone::Clone
  565. pub type aya_obj::btf::BtfParam::Owned = T
  566. pub fn aya_obj::btf::BtfParam::clone_into(&self, target: &mut T)
  567. pub fn aya_obj::btf::BtfParam::to_owned(&self) -> T
  568. impl<T> core::any::Any for aya_obj::btf::BtfParam where T: 'static + core::marker::Sized
  569. pub fn aya_obj::btf::BtfParam::type_id(&self) -> core::any::TypeId
  570. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfParam where T: core::marker::Sized
  571. pub fn aya_obj::btf::BtfParam::borrow(&self) -> &T
  572. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfParam where T: core::marker::Sized
  573. pub fn aya_obj::btf::BtfParam::borrow_mut(&mut self) -> &mut T
  574. impl<T> core::clone::CloneToUninit for aya_obj::btf::BtfParam where T: core::clone::Clone
  575. pub unsafe fn aya_obj::btf::BtfParam::clone_to_uninit(&self, dst: *mut T)
  576. impl<T> core::convert::From<T> for aya_obj::btf::BtfParam
  577. pub fn aya_obj::btf::BtfParam::from(t: T) -> T
  578. pub struct aya_obj::btf::BtfRelocationError
  579. pub aya_obj::btf::BtfRelocationError::section: alloc::string::String
  580. impl core::error::Error for aya_obj::btf::BtfRelocationError
  581. pub fn aya_obj::btf::BtfRelocationError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  582. impl core::fmt::Debug for aya_obj::btf::BtfRelocationError
  583. pub fn aya_obj::btf::BtfRelocationError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  584. impl core::fmt::Display for aya_obj::btf::BtfRelocationError
  585. pub fn aya_obj::btf::BtfRelocationError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  586. impl core::marker::Freeze for aya_obj::btf::BtfRelocationError
  587. impl core::marker::Send for aya_obj::btf::BtfRelocationError
  588. impl core::marker::Sync for aya_obj::btf::BtfRelocationError
  589. impl core::marker::Unpin for aya_obj::btf::BtfRelocationError
  590. impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::BtfRelocationError
  591. impl !core::panic::unwind_safe::UnwindSafe for aya_obj::btf::BtfRelocationError
  592. impl<T, U> core::convert::Into<U> for aya_obj::btf::BtfRelocationError where U: core::convert::From<T>
  593. pub fn aya_obj::btf::BtfRelocationError::into(self) -> U
  594. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::BtfRelocationError where U: core::convert::Into<T>
  595. pub type aya_obj::btf::BtfRelocationError::Error = core::convert::Infallible
  596. pub fn aya_obj::btf::BtfRelocationError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  597. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::BtfRelocationError where U: core::convert::TryFrom<T>
  598. pub type aya_obj::btf::BtfRelocationError::Error = <U as core::convert::TryFrom<T>>::Error
  599. pub fn aya_obj::btf::BtfRelocationError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  600. impl<T> alloc::string::ToString for aya_obj::btf::BtfRelocationError where T: core::fmt::Display + core::marker::Sized
  601. pub fn aya_obj::btf::BtfRelocationError::to_string(&self) -> alloc::string::String
  602. impl<T> core::any::Any for aya_obj::btf::BtfRelocationError where T: 'static + core::marker::Sized
  603. pub fn aya_obj::btf::BtfRelocationError::type_id(&self) -> core::any::TypeId
  604. impl<T> core::borrow::Borrow<T> for aya_obj::btf::BtfRelocationError where T: core::marker::Sized
  605. pub fn aya_obj::btf::BtfRelocationError::borrow(&self) -> &T
  606. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::BtfRelocationError where T: core::marker::Sized
  607. pub fn aya_obj::btf::BtfRelocationError::borrow_mut(&mut self) -> &mut T
  608. impl<T> core::convert::From<T> for aya_obj::btf::BtfRelocationError
  609. pub fn aya_obj::btf::BtfRelocationError::from(t: T) -> T
  610. #[repr(C)] pub struct aya_obj::btf::Const
  611. impl core::clone::Clone for aya_obj::btf::Const
  612. pub fn aya_obj::btf::Const::clone(&self) -> aya_obj::btf::Const
  613. impl core::fmt::Debug for aya_obj::btf::Const
  614. pub fn aya_obj::btf::Const::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  615. impl core::marker::Freeze for aya_obj::btf::Const
  616. impl core::marker::Send for aya_obj::btf::Const
  617. impl core::marker::Sync for aya_obj::btf::Const
  618. impl core::marker::Unpin for aya_obj::btf::Const
  619. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Const
  620. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Const
  621. impl<T, U> core::convert::Into<U> for aya_obj::btf::Const where U: core::convert::From<T>
  622. pub fn aya_obj::btf::Const::into(self) -> U
  623. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Const where U: core::convert::Into<T>
  624. pub type aya_obj::btf::Const::Error = core::convert::Infallible
  625. pub fn aya_obj::btf::Const::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  626. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Const where U: core::convert::TryFrom<T>
  627. pub type aya_obj::btf::Const::Error = <U as core::convert::TryFrom<T>>::Error
  628. pub fn aya_obj::btf::Const::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  629. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Const where T: core::clone::Clone
  630. pub type aya_obj::btf::Const::Owned = T
  631. pub fn aya_obj::btf::Const::clone_into(&self, target: &mut T)
  632. pub fn aya_obj::btf::Const::to_owned(&self) -> T
  633. impl<T> core::any::Any for aya_obj::btf::Const where T: 'static + core::marker::Sized
  634. pub fn aya_obj::btf::Const::type_id(&self) -> core::any::TypeId
  635. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Const where T: core::marker::Sized
  636. pub fn aya_obj::btf::Const::borrow(&self) -> &T
  637. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Const where T: core::marker::Sized
  638. pub fn aya_obj::btf::Const::borrow_mut(&mut self) -> &mut T
  639. impl<T> core::clone::CloneToUninit for aya_obj::btf::Const where T: core::clone::Clone
  640. pub unsafe fn aya_obj::btf::Const::clone_to_uninit(&self, dst: *mut T)
  641. impl<T> core::convert::From<T> for aya_obj::btf::Const
  642. pub fn aya_obj::btf::Const::from(t: T) -> T
  643. #[repr(C)] pub struct aya_obj::btf::DataSec
  644. impl aya_obj::btf::DataSec
  645. pub fn aya_obj::btf::DataSec::new(name_offset: u32, entries: alloc::vec::Vec<aya_obj::btf::DataSecEntry>, size: u32) -> Self
  646. impl core::clone::Clone for aya_obj::btf::DataSec
  647. pub fn aya_obj::btf::DataSec::clone(&self) -> aya_obj::btf::DataSec
  648. impl core::fmt::Debug for aya_obj::btf::DataSec
  649. pub fn aya_obj::btf::DataSec::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  650. impl core::marker::Freeze for aya_obj::btf::DataSec
  651. impl core::marker::Send for aya_obj::btf::DataSec
  652. impl core::marker::Sync for aya_obj::btf::DataSec
  653. impl core::marker::Unpin for aya_obj::btf::DataSec
  654. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::DataSec
  655. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::DataSec
  656. impl<T, U> core::convert::Into<U> for aya_obj::btf::DataSec where U: core::convert::From<T>
  657. pub fn aya_obj::btf::DataSec::into(self) -> U
  658. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::DataSec where U: core::convert::Into<T>
  659. pub type aya_obj::btf::DataSec::Error = core::convert::Infallible
  660. pub fn aya_obj::btf::DataSec::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  661. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::DataSec where U: core::convert::TryFrom<T>
  662. pub type aya_obj::btf::DataSec::Error = <U as core::convert::TryFrom<T>>::Error
  663. pub fn aya_obj::btf::DataSec::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  664. impl<T> alloc::borrow::ToOwned for aya_obj::btf::DataSec where T: core::clone::Clone
  665. pub type aya_obj::btf::DataSec::Owned = T
  666. pub fn aya_obj::btf::DataSec::clone_into(&self, target: &mut T)
  667. pub fn aya_obj::btf::DataSec::to_owned(&self) -> T
  668. impl<T> core::any::Any for aya_obj::btf::DataSec where T: 'static + core::marker::Sized
  669. pub fn aya_obj::btf::DataSec::type_id(&self) -> core::any::TypeId
  670. impl<T> core::borrow::Borrow<T> for aya_obj::btf::DataSec where T: core::marker::Sized
  671. pub fn aya_obj::btf::DataSec::borrow(&self) -> &T
  672. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::DataSec where T: core::marker::Sized
  673. pub fn aya_obj::btf::DataSec::borrow_mut(&mut self) -> &mut T
  674. impl<T> core::clone::CloneToUninit for aya_obj::btf::DataSec where T: core::clone::Clone
  675. pub unsafe fn aya_obj::btf::DataSec::clone_to_uninit(&self, dst: *mut T)
  676. impl<T> core::convert::From<T> for aya_obj::btf::DataSec
  677. pub fn aya_obj::btf::DataSec::from(t: T) -> T
  678. #[repr(C)] pub struct aya_obj::btf::DataSecEntry
  679. pub aya_obj::btf::DataSecEntry::btf_type: u32
  680. pub aya_obj::btf::DataSecEntry::offset: u32
  681. pub aya_obj::btf::DataSecEntry::size: u32
  682. impl core::clone::Clone for aya_obj::btf::DataSecEntry
  683. pub fn aya_obj::btf::DataSecEntry::clone(&self) -> aya_obj::btf::DataSecEntry
  684. impl core::fmt::Debug for aya_obj::btf::DataSecEntry
  685. pub fn aya_obj::btf::DataSecEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  686. impl core::marker::Freeze for aya_obj::btf::DataSecEntry
  687. impl core::marker::Send for aya_obj::btf::DataSecEntry
  688. impl core::marker::Sync for aya_obj::btf::DataSecEntry
  689. impl core::marker::Unpin for aya_obj::btf::DataSecEntry
  690. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::DataSecEntry
  691. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::DataSecEntry
  692. impl<T, U> core::convert::Into<U> for aya_obj::btf::DataSecEntry where U: core::convert::From<T>
  693. pub fn aya_obj::btf::DataSecEntry::into(self) -> U
  694. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::DataSecEntry where U: core::convert::Into<T>
  695. pub type aya_obj::btf::DataSecEntry::Error = core::convert::Infallible
  696. pub fn aya_obj::btf::DataSecEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  697. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::DataSecEntry where U: core::convert::TryFrom<T>
  698. pub type aya_obj::btf::DataSecEntry::Error = <U as core::convert::TryFrom<T>>::Error
  699. pub fn aya_obj::btf::DataSecEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  700. impl<T> alloc::borrow::ToOwned for aya_obj::btf::DataSecEntry where T: core::clone::Clone
  701. pub type aya_obj::btf::DataSecEntry::Owned = T
  702. pub fn aya_obj::btf::DataSecEntry::clone_into(&self, target: &mut T)
  703. pub fn aya_obj::btf::DataSecEntry::to_owned(&self) -> T
  704. impl<T> core::any::Any for aya_obj::btf::DataSecEntry where T: 'static + core::marker::Sized
  705. pub fn aya_obj::btf::DataSecEntry::type_id(&self) -> core::any::TypeId
  706. impl<T> core::borrow::Borrow<T> for aya_obj::btf::DataSecEntry where T: core::marker::Sized
  707. pub fn aya_obj::btf::DataSecEntry::borrow(&self) -> &T
  708. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::DataSecEntry where T: core::marker::Sized
  709. pub fn aya_obj::btf::DataSecEntry::borrow_mut(&mut self) -> &mut T
  710. impl<T> core::clone::CloneToUninit for aya_obj::btf::DataSecEntry where T: core::clone::Clone
  711. pub unsafe fn aya_obj::btf::DataSecEntry::clone_to_uninit(&self, dst: *mut T)
  712. impl<T> core::convert::From<T> for aya_obj::btf::DataSecEntry
  713. pub fn aya_obj::btf::DataSecEntry::from(t: T) -> T
  714. #[repr(C)] pub struct aya_obj::btf::DeclTag
  715. impl aya_obj::btf::DeclTag
  716. pub fn aya_obj::btf::DeclTag::new(name_offset: u32, btf_type: u32, component_index: i32) -> Self
  717. impl core::clone::Clone for aya_obj::btf::DeclTag
  718. pub fn aya_obj::btf::DeclTag::clone(&self) -> aya_obj::btf::DeclTag
  719. impl core::fmt::Debug for aya_obj::btf::DeclTag
  720. pub fn aya_obj::btf::DeclTag::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  721. impl core::marker::Freeze for aya_obj::btf::DeclTag
  722. impl core::marker::Send for aya_obj::btf::DeclTag
  723. impl core::marker::Sync for aya_obj::btf::DeclTag
  724. impl core::marker::Unpin for aya_obj::btf::DeclTag
  725. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::DeclTag
  726. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::DeclTag
  727. impl<T, U> core::convert::Into<U> for aya_obj::btf::DeclTag where U: core::convert::From<T>
  728. pub fn aya_obj::btf::DeclTag::into(self) -> U
  729. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::DeclTag where U: core::convert::Into<T>
  730. pub type aya_obj::btf::DeclTag::Error = core::convert::Infallible
  731. pub fn aya_obj::btf::DeclTag::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  732. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::DeclTag where U: core::convert::TryFrom<T>
  733. pub type aya_obj::btf::DeclTag::Error = <U as core::convert::TryFrom<T>>::Error
  734. pub fn aya_obj::btf::DeclTag::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  735. impl<T> alloc::borrow::ToOwned for aya_obj::btf::DeclTag where T: core::clone::Clone
  736. pub type aya_obj::btf::DeclTag::Owned = T
  737. pub fn aya_obj::btf::DeclTag::clone_into(&self, target: &mut T)
  738. pub fn aya_obj::btf::DeclTag::to_owned(&self) -> T
  739. impl<T> core::any::Any for aya_obj::btf::DeclTag where T: 'static + core::marker::Sized
  740. pub fn aya_obj::btf::DeclTag::type_id(&self) -> core::any::TypeId
  741. impl<T> core::borrow::Borrow<T> for aya_obj::btf::DeclTag where T: core::marker::Sized
  742. pub fn aya_obj::btf::DeclTag::borrow(&self) -> &T
  743. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::DeclTag where T: core::marker::Sized
  744. pub fn aya_obj::btf::DeclTag::borrow_mut(&mut self) -> &mut T
  745. impl<T> core::clone::CloneToUninit for aya_obj::btf::DeclTag where T: core::clone::Clone
  746. pub unsafe fn aya_obj::btf::DeclTag::clone_to_uninit(&self, dst: *mut T)
  747. impl<T> core::convert::From<T> for aya_obj::btf::DeclTag
  748. pub fn aya_obj::btf::DeclTag::from(t: T) -> T
  749. #[repr(C)] pub struct aya_obj::btf::Enum
  750. impl aya_obj::btf::Enum
  751. pub fn aya_obj::btf::Enum::new(name_offset: u32, signed: bool, variants: alloc::vec::Vec<aya_obj::btf::BtfEnum>) -> Self
  752. impl core::clone::Clone for aya_obj::btf::Enum
  753. pub fn aya_obj::btf::Enum::clone(&self) -> aya_obj::btf::Enum
  754. impl core::fmt::Debug for aya_obj::btf::Enum
  755. pub fn aya_obj::btf::Enum::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  756. impl core::marker::Freeze for aya_obj::btf::Enum
  757. impl core::marker::Send for aya_obj::btf::Enum
  758. impl core::marker::Sync for aya_obj::btf::Enum
  759. impl core::marker::Unpin for aya_obj::btf::Enum
  760. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Enum
  761. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Enum
  762. impl<T, U> core::convert::Into<U> for aya_obj::btf::Enum where U: core::convert::From<T>
  763. pub fn aya_obj::btf::Enum::into(self) -> U
  764. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Enum where U: core::convert::Into<T>
  765. pub type aya_obj::btf::Enum::Error = core::convert::Infallible
  766. pub fn aya_obj::btf::Enum::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  767. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Enum where U: core::convert::TryFrom<T>
  768. pub type aya_obj::btf::Enum::Error = <U as core::convert::TryFrom<T>>::Error
  769. pub fn aya_obj::btf::Enum::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  770. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Enum where T: core::clone::Clone
  771. pub type aya_obj::btf::Enum::Owned = T
  772. pub fn aya_obj::btf::Enum::clone_into(&self, target: &mut T)
  773. pub fn aya_obj::btf::Enum::to_owned(&self) -> T
  774. impl<T> core::any::Any for aya_obj::btf::Enum where T: 'static + core::marker::Sized
  775. pub fn aya_obj::btf::Enum::type_id(&self) -> core::any::TypeId
  776. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Enum where T: core::marker::Sized
  777. pub fn aya_obj::btf::Enum::borrow(&self) -> &T
  778. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Enum where T: core::marker::Sized
  779. pub fn aya_obj::btf::Enum::borrow_mut(&mut self) -> &mut T
  780. impl<T> core::clone::CloneToUninit for aya_obj::btf::Enum where T: core::clone::Clone
  781. pub unsafe fn aya_obj::btf::Enum::clone_to_uninit(&self, dst: *mut T)
  782. impl<T> core::convert::From<T> for aya_obj::btf::Enum
  783. pub fn aya_obj::btf::Enum::from(t: T) -> T
  784. #[repr(C)] pub struct aya_obj::btf::Enum64
  785. impl aya_obj::btf::Enum64
  786. pub fn aya_obj::btf::Enum64::new(name_offset: u32, signed: bool, variants: alloc::vec::Vec<aya_obj::btf::BtfEnum64>) -> Self
  787. impl core::clone::Clone for aya_obj::btf::Enum64
  788. pub fn aya_obj::btf::Enum64::clone(&self) -> aya_obj::btf::Enum64
  789. impl core::fmt::Debug for aya_obj::btf::Enum64
  790. pub fn aya_obj::btf::Enum64::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  791. impl core::marker::Freeze for aya_obj::btf::Enum64
  792. impl core::marker::Send for aya_obj::btf::Enum64
  793. impl core::marker::Sync for aya_obj::btf::Enum64
  794. impl core::marker::Unpin for aya_obj::btf::Enum64
  795. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Enum64
  796. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Enum64
  797. impl<T, U> core::convert::Into<U> for aya_obj::btf::Enum64 where U: core::convert::From<T>
  798. pub fn aya_obj::btf::Enum64::into(self) -> U
  799. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Enum64 where U: core::convert::Into<T>
  800. pub type aya_obj::btf::Enum64::Error = core::convert::Infallible
  801. pub fn aya_obj::btf::Enum64::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  802. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Enum64 where U: core::convert::TryFrom<T>
  803. pub type aya_obj::btf::Enum64::Error = <U as core::convert::TryFrom<T>>::Error
  804. pub fn aya_obj::btf::Enum64::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  805. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Enum64 where T: core::clone::Clone
  806. pub type aya_obj::btf::Enum64::Owned = T
  807. pub fn aya_obj::btf::Enum64::clone_into(&self, target: &mut T)
  808. pub fn aya_obj::btf::Enum64::to_owned(&self) -> T
  809. impl<T> core::any::Any for aya_obj::btf::Enum64 where T: 'static + core::marker::Sized
  810. pub fn aya_obj::btf::Enum64::type_id(&self) -> core::any::TypeId
  811. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Enum64 where T: core::marker::Sized
  812. pub fn aya_obj::btf::Enum64::borrow(&self) -> &T
  813. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Enum64 where T: core::marker::Sized
  814. pub fn aya_obj::btf::Enum64::borrow_mut(&mut self) -> &mut T
  815. impl<T> core::clone::CloneToUninit for aya_obj::btf::Enum64 where T: core::clone::Clone
  816. pub unsafe fn aya_obj::btf::Enum64::clone_to_uninit(&self, dst: *mut T)
  817. impl<T> core::convert::From<T> for aya_obj::btf::Enum64
  818. pub fn aya_obj::btf::Enum64::from(t: T) -> T
  819. #[repr(C)] pub struct aya_obj::btf::Float
  820. impl aya_obj::btf::Float
  821. pub fn aya_obj::btf::Float::new(name_offset: u32, size: u32) -> Self
  822. impl core::clone::Clone for aya_obj::btf::Float
  823. pub fn aya_obj::btf::Float::clone(&self) -> aya_obj::btf::Float
  824. impl core::fmt::Debug for aya_obj::btf::Float
  825. pub fn aya_obj::btf::Float::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  826. impl core::marker::Freeze for aya_obj::btf::Float
  827. impl core::marker::Send for aya_obj::btf::Float
  828. impl core::marker::Sync for aya_obj::btf::Float
  829. impl core::marker::Unpin for aya_obj::btf::Float
  830. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Float
  831. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Float
  832. impl<T, U> core::convert::Into<U> for aya_obj::btf::Float where U: core::convert::From<T>
  833. pub fn aya_obj::btf::Float::into(self) -> U
  834. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Float where U: core::convert::Into<T>
  835. pub type aya_obj::btf::Float::Error = core::convert::Infallible
  836. pub fn aya_obj::btf::Float::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  837. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Float where U: core::convert::TryFrom<T>
  838. pub type aya_obj::btf::Float::Error = <U as core::convert::TryFrom<T>>::Error
  839. pub fn aya_obj::btf::Float::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  840. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Float where T: core::clone::Clone
  841. pub type aya_obj::btf::Float::Owned = T
  842. pub fn aya_obj::btf::Float::clone_into(&self, target: &mut T)
  843. pub fn aya_obj::btf::Float::to_owned(&self) -> T
  844. impl<T> core::any::Any for aya_obj::btf::Float where T: 'static + core::marker::Sized
  845. pub fn aya_obj::btf::Float::type_id(&self) -> core::any::TypeId
  846. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Float where T: core::marker::Sized
  847. pub fn aya_obj::btf::Float::borrow(&self) -> &T
  848. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Float where T: core::marker::Sized
  849. pub fn aya_obj::btf::Float::borrow_mut(&mut self) -> &mut T
  850. impl<T> core::clone::CloneToUninit for aya_obj::btf::Float where T: core::clone::Clone
  851. pub unsafe fn aya_obj::btf::Float::clone_to_uninit(&self, dst: *mut T)
  852. impl<T> core::convert::From<T> for aya_obj::btf::Float
  853. pub fn aya_obj::btf::Float::from(t: T) -> T
  854. #[repr(C)] pub struct aya_obj::btf::Func
  855. impl aya_obj::btf::Func
  856. pub fn aya_obj::btf::Func::new(name_offset: u32, proto: u32, linkage: aya_obj::btf::FuncLinkage) -> Self
  857. impl core::clone::Clone for aya_obj::btf::Func
  858. pub fn aya_obj::btf::Func::clone(&self) -> aya_obj::btf::Func
  859. impl core::fmt::Debug for aya_obj::btf::Func
  860. pub fn aya_obj::btf::Func::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  861. impl core::marker::Freeze for aya_obj::btf::Func
  862. impl core::marker::Send for aya_obj::btf::Func
  863. impl core::marker::Sync for aya_obj::btf::Func
  864. impl core::marker::Unpin for aya_obj::btf::Func
  865. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Func
  866. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Func
  867. impl<T, U> core::convert::Into<U> for aya_obj::btf::Func where U: core::convert::From<T>
  868. pub fn aya_obj::btf::Func::into(self) -> U
  869. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Func where U: core::convert::Into<T>
  870. pub type aya_obj::btf::Func::Error = core::convert::Infallible
  871. pub fn aya_obj::btf::Func::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  872. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Func where U: core::convert::TryFrom<T>
  873. pub type aya_obj::btf::Func::Error = <U as core::convert::TryFrom<T>>::Error
  874. pub fn aya_obj::btf::Func::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  875. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Func where T: core::clone::Clone
  876. pub type aya_obj::btf::Func::Owned = T
  877. pub fn aya_obj::btf::Func::clone_into(&self, target: &mut T)
  878. pub fn aya_obj::btf::Func::to_owned(&self) -> T
  879. impl<T> core::any::Any for aya_obj::btf::Func where T: 'static + core::marker::Sized
  880. pub fn aya_obj::btf::Func::type_id(&self) -> core::any::TypeId
  881. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Func where T: core::marker::Sized
  882. pub fn aya_obj::btf::Func::borrow(&self) -> &T
  883. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Func where T: core::marker::Sized
  884. pub fn aya_obj::btf::Func::borrow_mut(&mut self) -> &mut T
  885. impl<T> core::clone::CloneToUninit for aya_obj::btf::Func where T: core::clone::Clone
  886. pub unsafe fn aya_obj::btf::Func::clone_to_uninit(&self, dst: *mut T)
  887. impl<T> core::convert::From<T> for aya_obj::btf::Func
  888. pub fn aya_obj::btf::Func::from(t: T) -> T
  889. pub struct aya_obj::btf::FuncInfo
  890. pub aya_obj::btf::FuncInfo::data: std::collections::hash::map::HashMap<alloc::string::String, aya_obj::btf::FuncSecInfo>
  891. impl core::clone::Clone for aya_obj::btf::FuncInfo
  892. pub fn aya_obj::btf::FuncInfo::clone(&self) -> aya_obj::btf::FuncInfo
  893. impl core::fmt::Debug for aya_obj::btf::FuncInfo
  894. pub fn aya_obj::btf::FuncInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  895. impl core::marker::Freeze for aya_obj::btf::FuncInfo
  896. impl core::marker::Send for aya_obj::btf::FuncInfo
  897. impl core::marker::Sync for aya_obj::btf::FuncInfo
  898. impl core::marker::Unpin for aya_obj::btf::FuncInfo
  899. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncInfo
  900. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncInfo
  901. impl<T, U> core::convert::Into<U> for aya_obj::btf::FuncInfo where U: core::convert::From<T>
  902. pub fn aya_obj::btf::FuncInfo::into(self) -> U
  903. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::FuncInfo where U: core::convert::Into<T>
  904. pub type aya_obj::btf::FuncInfo::Error = core::convert::Infallible
  905. pub fn aya_obj::btf::FuncInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  906. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::FuncInfo where U: core::convert::TryFrom<T>
  907. pub type aya_obj::btf::FuncInfo::Error = <U as core::convert::TryFrom<T>>::Error
  908. pub fn aya_obj::btf::FuncInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  909. impl<T> alloc::borrow::ToOwned for aya_obj::btf::FuncInfo where T: core::clone::Clone
  910. pub type aya_obj::btf::FuncInfo::Owned = T
  911. pub fn aya_obj::btf::FuncInfo::clone_into(&self, target: &mut T)
  912. pub fn aya_obj::btf::FuncInfo::to_owned(&self) -> T
  913. impl<T> core::any::Any for aya_obj::btf::FuncInfo where T: 'static + core::marker::Sized
  914. pub fn aya_obj::btf::FuncInfo::type_id(&self) -> core::any::TypeId
  915. impl<T> core::borrow::Borrow<T> for aya_obj::btf::FuncInfo where T: core::marker::Sized
  916. pub fn aya_obj::btf::FuncInfo::borrow(&self) -> &T
  917. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::FuncInfo where T: core::marker::Sized
  918. pub fn aya_obj::btf::FuncInfo::borrow_mut(&mut self) -> &mut T
  919. impl<T> core::clone::CloneToUninit for aya_obj::btf::FuncInfo where T: core::clone::Clone
  920. pub unsafe fn aya_obj::btf::FuncInfo::clone_to_uninit(&self, dst: *mut T)
  921. impl<T> core::convert::From<T> for aya_obj::btf::FuncInfo
  922. pub fn aya_obj::btf::FuncInfo::from(t: T) -> T
  923. #[repr(C)] pub struct aya_obj::btf::FuncProto
  924. impl aya_obj::btf::FuncProto
  925. pub fn aya_obj::btf::FuncProto::new(params: alloc::vec::Vec<aya_obj::btf::BtfParam>, return_type: u32) -> Self
  926. impl core::clone::Clone for aya_obj::btf::FuncProto
  927. pub fn aya_obj::btf::FuncProto::clone(&self) -> aya_obj::btf::FuncProto
  928. impl core::fmt::Debug for aya_obj::btf::FuncProto
  929. pub fn aya_obj::btf::FuncProto::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  930. impl core::marker::Freeze for aya_obj::btf::FuncProto
  931. impl core::marker::Send for aya_obj::btf::FuncProto
  932. impl core::marker::Sync for aya_obj::btf::FuncProto
  933. impl core::marker::Unpin for aya_obj::btf::FuncProto
  934. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncProto
  935. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncProto
  936. impl<T, U> core::convert::Into<U> for aya_obj::btf::FuncProto where U: core::convert::From<T>
  937. pub fn aya_obj::btf::FuncProto::into(self) -> U
  938. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::FuncProto where U: core::convert::Into<T>
  939. pub type aya_obj::btf::FuncProto::Error = core::convert::Infallible
  940. pub fn aya_obj::btf::FuncProto::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  941. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::FuncProto where U: core::convert::TryFrom<T>
  942. pub type aya_obj::btf::FuncProto::Error = <U as core::convert::TryFrom<T>>::Error
  943. pub fn aya_obj::btf::FuncProto::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  944. impl<T> alloc::borrow::ToOwned for aya_obj::btf::FuncProto where T: core::clone::Clone
  945. pub type aya_obj::btf::FuncProto::Owned = T
  946. pub fn aya_obj::btf::FuncProto::clone_into(&self, target: &mut T)
  947. pub fn aya_obj::btf::FuncProto::to_owned(&self) -> T
  948. impl<T> core::any::Any for aya_obj::btf::FuncProto where T: 'static + core::marker::Sized
  949. pub fn aya_obj::btf::FuncProto::type_id(&self) -> core::any::TypeId
  950. impl<T> core::borrow::Borrow<T> for aya_obj::btf::FuncProto where T: core::marker::Sized
  951. pub fn aya_obj::btf::FuncProto::borrow(&self) -> &T
  952. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::FuncProto where T: core::marker::Sized
  953. pub fn aya_obj::btf::FuncProto::borrow_mut(&mut self) -> &mut T
  954. impl<T> core::clone::CloneToUninit for aya_obj::btf::FuncProto where T: core::clone::Clone
  955. pub unsafe fn aya_obj::btf::FuncProto::clone_to_uninit(&self, dst: *mut T)
  956. impl<T> core::convert::From<T> for aya_obj::btf::FuncProto
  957. pub fn aya_obj::btf::FuncProto::from(t: T) -> T
  958. pub struct aya_obj::btf::FuncSecInfo
  959. pub aya_obj::btf::FuncSecInfo::func_info: alloc::vec::Vec<aya_obj::generated::bpf_func_info>
  960. pub aya_obj::btf::FuncSecInfo::num_info: u32
  961. impl aya_obj::btf::FuncSecInfo
  962. pub fn aya_obj::btf::FuncSecInfo::func_info_bytes(&self) -> alloc::vec::Vec<u8>
  963. pub fn aya_obj::btf::FuncSecInfo::len(&self) -> usize
  964. impl core::clone::Clone for aya_obj::btf::FuncSecInfo
  965. pub fn aya_obj::btf::FuncSecInfo::clone(&self) -> aya_obj::btf::FuncSecInfo
  966. impl core::default::Default for aya_obj::btf::FuncSecInfo
  967. pub fn aya_obj::btf::FuncSecInfo::default() -> aya_obj::btf::FuncSecInfo
  968. impl core::fmt::Debug for aya_obj::btf::FuncSecInfo
  969. pub fn aya_obj::btf::FuncSecInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  970. impl core::marker::Freeze for aya_obj::btf::FuncSecInfo
  971. impl core::marker::Send for aya_obj::btf::FuncSecInfo
  972. impl core::marker::Sync for aya_obj::btf::FuncSecInfo
  973. impl core::marker::Unpin for aya_obj::btf::FuncSecInfo
  974. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::FuncSecInfo
  975. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::FuncSecInfo
  976. impl<T, U> core::convert::Into<U> for aya_obj::btf::FuncSecInfo where U: core::convert::From<T>
  977. pub fn aya_obj::btf::FuncSecInfo::into(self) -> U
  978. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::FuncSecInfo where U: core::convert::Into<T>
  979. pub type aya_obj::btf::FuncSecInfo::Error = core::convert::Infallible
  980. pub fn aya_obj::btf::FuncSecInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  981. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::FuncSecInfo where U: core::convert::TryFrom<T>
  982. pub type aya_obj::btf::FuncSecInfo::Error = <U as core::convert::TryFrom<T>>::Error
  983. pub fn aya_obj::btf::FuncSecInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  984. impl<T> alloc::borrow::ToOwned for aya_obj::btf::FuncSecInfo where T: core::clone::Clone
  985. pub type aya_obj::btf::FuncSecInfo::Owned = T
  986. pub fn aya_obj::btf::FuncSecInfo::clone_into(&self, target: &mut T)
  987. pub fn aya_obj::btf::FuncSecInfo::to_owned(&self) -> T
  988. impl<T> core::any::Any for aya_obj::btf::FuncSecInfo where T: 'static + core::marker::Sized
  989. pub fn aya_obj::btf::FuncSecInfo::type_id(&self) -> core::any::TypeId
  990. impl<T> core::borrow::Borrow<T> for aya_obj::btf::FuncSecInfo where T: core::marker::Sized
  991. pub fn aya_obj::btf::FuncSecInfo::borrow(&self) -> &T
  992. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::FuncSecInfo where T: core::marker::Sized
  993. pub fn aya_obj::btf::FuncSecInfo::borrow_mut(&mut self) -> &mut T
  994. impl<T> core::clone::CloneToUninit for aya_obj::btf::FuncSecInfo where T: core::clone::Clone
  995. pub unsafe fn aya_obj::btf::FuncSecInfo::clone_to_uninit(&self, dst: *mut T)
  996. impl<T> core::convert::From<T> for aya_obj::btf::FuncSecInfo
  997. pub fn aya_obj::btf::FuncSecInfo::from(t: T) -> T
  998. #[repr(C)] pub struct aya_obj::btf::Fwd
  999. impl core::clone::Clone for aya_obj::btf::Fwd
  1000. pub fn aya_obj::btf::Fwd::clone(&self) -> aya_obj::btf::Fwd
  1001. impl core::fmt::Debug for aya_obj::btf::Fwd
  1002. pub fn aya_obj::btf::Fwd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1003. impl core::marker::Freeze for aya_obj::btf::Fwd
  1004. impl core::marker::Send for aya_obj::btf::Fwd
  1005. impl core::marker::Sync for aya_obj::btf::Fwd
  1006. impl core::marker::Unpin for aya_obj::btf::Fwd
  1007. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Fwd
  1008. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Fwd
  1009. impl<T, U> core::convert::Into<U> for aya_obj::btf::Fwd where U: core::convert::From<T>
  1010. pub fn aya_obj::btf::Fwd::into(self) -> U
  1011. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Fwd where U: core::convert::Into<T>
  1012. pub type aya_obj::btf::Fwd::Error = core::convert::Infallible
  1013. pub fn aya_obj::btf::Fwd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1014. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Fwd where U: core::convert::TryFrom<T>
  1015. pub type aya_obj::btf::Fwd::Error = <U as core::convert::TryFrom<T>>::Error
  1016. pub fn aya_obj::btf::Fwd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1017. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Fwd where T: core::clone::Clone
  1018. pub type aya_obj::btf::Fwd::Owned = T
  1019. pub fn aya_obj::btf::Fwd::clone_into(&self, target: &mut T)
  1020. pub fn aya_obj::btf::Fwd::to_owned(&self) -> T
  1021. impl<T> core::any::Any for aya_obj::btf::Fwd where T: 'static + core::marker::Sized
  1022. pub fn aya_obj::btf::Fwd::type_id(&self) -> core::any::TypeId
  1023. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Fwd where T: core::marker::Sized
  1024. pub fn aya_obj::btf::Fwd::borrow(&self) -> &T
  1025. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Fwd where T: core::marker::Sized
  1026. pub fn aya_obj::btf::Fwd::borrow_mut(&mut self) -> &mut T
  1027. impl<T> core::clone::CloneToUninit for aya_obj::btf::Fwd where T: core::clone::Clone
  1028. pub unsafe fn aya_obj::btf::Fwd::clone_to_uninit(&self, dst: *mut T)
  1029. impl<T> core::convert::From<T> for aya_obj::btf::Fwd
  1030. pub fn aya_obj::btf::Fwd::from(t: T) -> T
  1031. #[repr(C)] pub struct aya_obj::btf::Int
  1032. impl aya_obj::btf::Int
  1033. pub fn aya_obj::btf::Int::new(name_offset: u32, size: u32, encoding: aya_obj::btf::IntEncoding, offset: u32) -> Self
  1034. impl core::clone::Clone for aya_obj::btf::Int
  1035. pub fn aya_obj::btf::Int::clone(&self) -> aya_obj::btf::Int
  1036. impl core::fmt::Debug for aya_obj::btf::Int
  1037. pub fn aya_obj::btf::Int::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1038. impl core::marker::Freeze for aya_obj::btf::Int
  1039. impl core::marker::Send for aya_obj::btf::Int
  1040. impl core::marker::Sync for aya_obj::btf::Int
  1041. impl core::marker::Unpin for aya_obj::btf::Int
  1042. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Int
  1043. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Int
  1044. impl<T, U> core::convert::Into<U> for aya_obj::btf::Int where U: core::convert::From<T>
  1045. pub fn aya_obj::btf::Int::into(self) -> U
  1046. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Int where U: core::convert::Into<T>
  1047. pub type aya_obj::btf::Int::Error = core::convert::Infallible
  1048. pub fn aya_obj::btf::Int::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1049. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Int where U: core::convert::TryFrom<T>
  1050. pub type aya_obj::btf::Int::Error = <U as core::convert::TryFrom<T>>::Error
  1051. pub fn aya_obj::btf::Int::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1052. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Int where T: core::clone::Clone
  1053. pub type aya_obj::btf::Int::Owned = T
  1054. pub fn aya_obj::btf::Int::clone_into(&self, target: &mut T)
  1055. pub fn aya_obj::btf::Int::to_owned(&self) -> T
  1056. impl<T> core::any::Any for aya_obj::btf::Int where T: 'static + core::marker::Sized
  1057. pub fn aya_obj::btf::Int::type_id(&self) -> core::any::TypeId
  1058. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Int where T: core::marker::Sized
  1059. pub fn aya_obj::btf::Int::borrow(&self) -> &T
  1060. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Int where T: core::marker::Sized
  1061. pub fn aya_obj::btf::Int::borrow_mut(&mut self) -> &mut T
  1062. impl<T> core::clone::CloneToUninit for aya_obj::btf::Int where T: core::clone::Clone
  1063. pub unsafe fn aya_obj::btf::Int::clone_to_uninit(&self, dst: *mut T)
  1064. impl<T> core::convert::From<T> for aya_obj::btf::Int
  1065. pub fn aya_obj::btf::Int::from(t: T) -> T
  1066. pub struct aya_obj::btf::LineSecInfo
  1067. pub aya_obj::btf::LineSecInfo::line_info: alloc::vec::Vec<aya_obj::generated::bpf_line_info>
  1068. pub aya_obj::btf::LineSecInfo::num_info: u32
  1069. impl aya_obj::btf::LineSecInfo
  1070. pub fn aya_obj::btf::LineSecInfo::len(&self) -> usize
  1071. pub fn aya_obj::btf::LineSecInfo::line_info_bytes(&self) -> alloc::vec::Vec<u8>
  1072. impl core::clone::Clone for aya_obj::btf::LineSecInfo
  1073. pub fn aya_obj::btf::LineSecInfo::clone(&self) -> aya_obj::btf::LineSecInfo
  1074. impl core::default::Default for aya_obj::btf::LineSecInfo
  1075. pub fn aya_obj::btf::LineSecInfo::default() -> aya_obj::btf::LineSecInfo
  1076. impl core::fmt::Debug for aya_obj::btf::LineSecInfo
  1077. pub fn aya_obj::btf::LineSecInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1078. impl core::marker::Freeze for aya_obj::btf::LineSecInfo
  1079. impl core::marker::Send for aya_obj::btf::LineSecInfo
  1080. impl core::marker::Sync for aya_obj::btf::LineSecInfo
  1081. impl core::marker::Unpin for aya_obj::btf::LineSecInfo
  1082. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::LineSecInfo
  1083. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::LineSecInfo
  1084. impl<T, U> core::convert::Into<U> for aya_obj::btf::LineSecInfo where U: core::convert::From<T>
  1085. pub fn aya_obj::btf::LineSecInfo::into(self) -> U
  1086. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::LineSecInfo where U: core::convert::Into<T>
  1087. pub type aya_obj::btf::LineSecInfo::Error = core::convert::Infallible
  1088. pub fn aya_obj::btf::LineSecInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1089. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::LineSecInfo where U: core::convert::TryFrom<T>
  1090. pub type aya_obj::btf::LineSecInfo::Error = <U as core::convert::TryFrom<T>>::Error
  1091. pub fn aya_obj::btf::LineSecInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1092. impl<T> alloc::borrow::ToOwned for aya_obj::btf::LineSecInfo where T: core::clone::Clone
  1093. pub type aya_obj::btf::LineSecInfo::Owned = T
  1094. pub fn aya_obj::btf::LineSecInfo::clone_into(&self, target: &mut T)
  1095. pub fn aya_obj::btf::LineSecInfo::to_owned(&self) -> T
  1096. impl<T> core::any::Any for aya_obj::btf::LineSecInfo where T: 'static + core::marker::Sized
  1097. pub fn aya_obj::btf::LineSecInfo::type_id(&self) -> core::any::TypeId
  1098. impl<T> core::borrow::Borrow<T> for aya_obj::btf::LineSecInfo where T: core::marker::Sized
  1099. pub fn aya_obj::btf::LineSecInfo::borrow(&self) -> &T
  1100. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::LineSecInfo where T: core::marker::Sized
  1101. pub fn aya_obj::btf::LineSecInfo::borrow_mut(&mut self) -> &mut T
  1102. impl<T> core::clone::CloneToUninit for aya_obj::btf::LineSecInfo where T: core::clone::Clone
  1103. pub unsafe fn aya_obj::btf::LineSecInfo::clone_to_uninit(&self, dst: *mut T)
  1104. impl<T> core::convert::From<T> for aya_obj::btf::LineSecInfo
  1105. pub fn aya_obj::btf::LineSecInfo::from(t: T) -> T
  1106. #[repr(C)] pub struct aya_obj::btf::Ptr
  1107. impl aya_obj::btf::Ptr
  1108. pub fn aya_obj::btf::Ptr::new(name_offset: u32, btf_type: u32) -> Self
  1109. impl core::clone::Clone for aya_obj::btf::Ptr
  1110. pub fn aya_obj::btf::Ptr::clone(&self) -> aya_obj::btf::Ptr
  1111. impl core::fmt::Debug for aya_obj::btf::Ptr
  1112. pub fn aya_obj::btf::Ptr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1113. impl core::marker::Freeze for aya_obj::btf::Ptr
  1114. impl core::marker::Send for aya_obj::btf::Ptr
  1115. impl core::marker::Sync for aya_obj::btf::Ptr
  1116. impl core::marker::Unpin for aya_obj::btf::Ptr
  1117. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Ptr
  1118. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Ptr
  1119. impl<T, U> core::convert::Into<U> for aya_obj::btf::Ptr where U: core::convert::From<T>
  1120. pub fn aya_obj::btf::Ptr::into(self) -> U
  1121. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Ptr where U: core::convert::Into<T>
  1122. pub type aya_obj::btf::Ptr::Error = core::convert::Infallible
  1123. pub fn aya_obj::btf::Ptr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1124. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Ptr where U: core::convert::TryFrom<T>
  1125. pub type aya_obj::btf::Ptr::Error = <U as core::convert::TryFrom<T>>::Error
  1126. pub fn aya_obj::btf::Ptr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1127. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Ptr where T: core::clone::Clone
  1128. pub type aya_obj::btf::Ptr::Owned = T
  1129. pub fn aya_obj::btf::Ptr::clone_into(&self, target: &mut T)
  1130. pub fn aya_obj::btf::Ptr::to_owned(&self) -> T
  1131. impl<T> core::any::Any for aya_obj::btf::Ptr where T: 'static + core::marker::Sized
  1132. pub fn aya_obj::btf::Ptr::type_id(&self) -> core::any::TypeId
  1133. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Ptr where T: core::marker::Sized
  1134. pub fn aya_obj::btf::Ptr::borrow(&self) -> &T
  1135. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Ptr where T: core::marker::Sized
  1136. pub fn aya_obj::btf::Ptr::borrow_mut(&mut self) -> &mut T
  1137. impl<T> core::clone::CloneToUninit for aya_obj::btf::Ptr where T: core::clone::Clone
  1138. pub unsafe fn aya_obj::btf::Ptr::clone_to_uninit(&self, dst: *mut T)
  1139. impl<T> core::convert::From<T> for aya_obj::btf::Ptr
  1140. pub fn aya_obj::btf::Ptr::from(t: T) -> T
  1141. pub struct aya_obj::btf::Restrict
  1142. impl core::clone::Clone for aya_obj::btf::Restrict
  1143. pub fn aya_obj::btf::Restrict::clone(&self) -> aya_obj::btf::Restrict
  1144. impl core::fmt::Debug for aya_obj::btf::Restrict
  1145. pub fn aya_obj::btf::Restrict::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1146. impl core::marker::Freeze for aya_obj::btf::Restrict
  1147. impl core::marker::Send for aya_obj::btf::Restrict
  1148. impl core::marker::Sync for aya_obj::btf::Restrict
  1149. impl core::marker::Unpin for aya_obj::btf::Restrict
  1150. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Restrict
  1151. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Restrict
  1152. impl<T, U> core::convert::Into<U> for aya_obj::btf::Restrict where U: core::convert::From<T>
  1153. pub fn aya_obj::btf::Restrict::into(self) -> U
  1154. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Restrict where U: core::convert::Into<T>
  1155. pub type aya_obj::btf::Restrict::Error = core::convert::Infallible
  1156. pub fn aya_obj::btf::Restrict::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1157. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Restrict where U: core::convert::TryFrom<T>
  1158. pub type aya_obj::btf::Restrict::Error = <U as core::convert::TryFrom<T>>::Error
  1159. pub fn aya_obj::btf::Restrict::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1160. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Restrict where T: core::clone::Clone
  1161. pub type aya_obj::btf::Restrict::Owned = T
  1162. pub fn aya_obj::btf::Restrict::clone_into(&self, target: &mut T)
  1163. pub fn aya_obj::btf::Restrict::to_owned(&self) -> T
  1164. impl<T> core::any::Any for aya_obj::btf::Restrict where T: 'static + core::marker::Sized
  1165. pub fn aya_obj::btf::Restrict::type_id(&self) -> core::any::TypeId
  1166. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Restrict where T: core::marker::Sized
  1167. pub fn aya_obj::btf::Restrict::borrow(&self) -> &T
  1168. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Restrict where T: core::marker::Sized
  1169. pub fn aya_obj::btf::Restrict::borrow_mut(&mut self) -> &mut T
  1170. impl<T> core::clone::CloneToUninit for aya_obj::btf::Restrict where T: core::clone::Clone
  1171. pub unsafe fn aya_obj::btf::Restrict::clone_to_uninit(&self, dst: *mut T)
  1172. impl<T> core::convert::From<T> for aya_obj::btf::Restrict
  1173. pub fn aya_obj::btf::Restrict::from(t: T) -> T
  1174. #[repr(C)] pub struct aya_obj::btf::Struct
  1175. impl core::clone::Clone for aya_obj::btf::Struct
  1176. pub fn aya_obj::btf::Struct::clone(&self) -> aya_obj::btf::Struct
  1177. impl core::fmt::Debug for aya_obj::btf::Struct
  1178. pub fn aya_obj::btf::Struct::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1179. impl core::marker::Freeze for aya_obj::btf::Struct
  1180. impl core::marker::Send for aya_obj::btf::Struct
  1181. impl core::marker::Sync for aya_obj::btf::Struct
  1182. impl core::marker::Unpin for aya_obj::btf::Struct
  1183. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Struct
  1184. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Struct
  1185. impl<T, U> core::convert::Into<U> for aya_obj::btf::Struct where U: core::convert::From<T>
  1186. pub fn aya_obj::btf::Struct::into(self) -> U
  1187. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Struct where U: core::convert::Into<T>
  1188. pub type aya_obj::btf::Struct::Error = core::convert::Infallible
  1189. pub fn aya_obj::btf::Struct::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1190. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Struct where U: core::convert::TryFrom<T>
  1191. pub type aya_obj::btf::Struct::Error = <U as core::convert::TryFrom<T>>::Error
  1192. pub fn aya_obj::btf::Struct::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1193. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Struct where T: core::clone::Clone
  1194. pub type aya_obj::btf::Struct::Owned = T
  1195. pub fn aya_obj::btf::Struct::clone_into(&self, target: &mut T)
  1196. pub fn aya_obj::btf::Struct::to_owned(&self) -> T
  1197. impl<T> core::any::Any for aya_obj::btf::Struct where T: 'static + core::marker::Sized
  1198. pub fn aya_obj::btf::Struct::type_id(&self) -> core::any::TypeId
  1199. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Struct where T: core::marker::Sized
  1200. pub fn aya_obj::btf::Struct::borrow(&self) -> &T
  1201. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Struct where T: core::marker::Sized
  1202. pub fn aya_obj::btf::Struct::borrow_mut(&mut self) -> &mut T
  1203. impl<T> core::clone::CloneToUninit for aya_obj::btf::Struct where T: core::clone::Clone
  1204. pub unsafe fn aya_obj::btf::Struct::clone_to_uninit(&self, dst: *mut T)
  1205. impl<T> core::convert::From<T> for aya_obj::btf::Struct
  1206. pub fn aya_obj::btf::Struct::from(t: T) -> T
  1207. #[repr(C)] pub struct aya_obj::btf::TypeTag
  1208. impl aya_obj::btf::TypeTag
  1209. pub fn aya_obj::btf::TypeTag::new(name_offset: u32, btf_type: u32) -> Self
  1210. impl core::clone::Clone for aya_obj::btf::TypeTag
  1211. pub fn aya_obj::btf::TypeTag::clone(&self) -> aya_obj::btf::TypeTag
  1212. impl core::fmt::Debug for aya_obj::btf::TypeTag
  1213. pub fn aya_obj::btf::TypeTag::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1214. impl core::marker::Freeze for aya_obj::btf::TypeTag
  1215. impl core::marker::Send for aya_obj::btf::TypeTag
  1216. impl core::marker::Sync for aya_obj::btf::TypeTag
  1217. impl core::marker::Unpin for aya_obj::btf::TypeTag
  1218. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::TypeTag
  1219. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::TypeTag
  1220. impl<T, U> core::convert::Into<U> for aya_obj::btf::TypeTag where U: core::convert::From<T>
  1221. pub fn aya_obj::btf::TypeTag::into(self) -> U
  1222. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::TypeTag where U: core::convert::Into<T>
  1223. pub type aya_obj::btf::TypeTag::Error = core::convert::Infallible
  1224. pub fn aya_obj::btf::TypeTag::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1225. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::TypeTag where U: core::convert::TryFrom<T>
  1226. pub type aya_obj::btf::TypeTag::Error = <U as core::convert::TryFrom<T>>::Error
  1227. pub fn aya_obj::btf::TypeTag::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1228. impl<T> alloc::borrow::ToOwned for aya_obj::btf::TypeTag where T: core::clone::Clone
  1229. pub type aya_obj::btf::TypeTag::Owned = T
  1230. pub fn aya_obj::btf::TypeTag::clone_into(&self, target: &mut T)
  1231. pub fn aya_obj::btf::TypeTag::to_owned(&self) -> T
  1232. impl<T> core::any::Any for aya_obj::btf::TypeTag where T: 'static + core::marker::Sized
  1233. pub fn aya_obj::btf::TypeTag::type_id(&self) -> core::any::TypeId
  1234. impl<T> core::borrow::Borrow<T> for aya_obj::btf::TypeTag where T: core::marker::Sized
  1235. pub fn aya_obj::btf::TypeTag::borrow(&self) -> &T
  1236. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::TypeTag where T: core::marker::Sized
  1237. pub fn aya_obj::btf::TypeTag::borrow_mut(&mut self) -> &mut T
  1238. impl<T> core::clone::CloneToUninit for aya_obj::btf::TypeTag where T: core::clone::Clone
  1239. pub unsafe fn aya_obj::btf::TypeTag::clone_to_uninit(&self, dst: *mut T)
  1240. impl<T> core::convert::From<T> for aya_obj::btf::TypeTag
  1241. pub fn aya_obj::btf::TypeTag::from(t: T) -> T
  1242. #[repr(C)] pub struct aya_obj::btf::Typedef
  1243. impl core::clone::Clone for aya_obj::btf::Typedef
  1244. pub fn aya_obj::btf::Typedef::clone(&self) -> aya_obj::btf::Typedef
  1245. impl core::fmt::Debug for aya_obj::btf::Typedef
  1246. pub fn aya_obj::btf::Typedef::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1247. impl core::marker::Freeze for aya_obj::btf::Typedef
  1248. impl core::marker::Send for aya_obj::btf::Typedef
  1249. impl core::marker::Sync for aya_obj::btf::Typedef
  1250. impl core::marker::Unpin for aya_obj::btf::Typedef
  1251. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Typedef
  1252. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Typedef
  1253. impl<T, U> core::convert::Into<U> for aya_obj::btf::Typedef where U: core::convert::From<T>
  1254. pub fn aya_obj::btf::Typedef::into(self) -> U
  1255. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Typedef where U: core::convert::Into<T>
  1256. pub type aya_obj::btf::Typedef::Error = core::convert::Infallible
  1257. pub fn aya_obj::btf::Typedef::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1258. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Typedef where U: core::convert::TryFrom<T>
  1259. pub type aya_obj::btf::Typedef::Error = <U as core::convert::TryFrom<T>>::Error
  1260. pub fn aya_obj::btf::Typedef::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1261. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Typedef where T: core::clone::Clone
  1262. pub type aya_obj::btf::Typedef::Owned = T
  1263. pub fn aya_obj::btf::Typedef::clone_into(&self, target: &mut T)
  1264. pub fn aya_obj::btf::Typedef::to_owned(&self) -> T
  1265. impl<T> core::any::Any for aya_obj::btf::Typedef where T: 'static + core::marker::Sized
  1266. pub fn aya_obj::btf::Typedef::type_id(&self) -> core::any::TypeId
  1267. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Typedef where T: core::marker::Sized
  1268. pub fn aya_obj::btf::Typedef::borrow(&self) -> &T
  1269. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Typedef where T: core::marker::Sized
  1270. pub fn aya_obj::btf::Typedef::borrow_mut(&mut self) -> &mut T
  1271. impl<T> core::clone::CloneToUninit for aya_obj::btf::Typedef where T: core::clone::Clone
  1272. pub unsafe fn aya_obj::btf::Typedef::clone_to_uninit(&self, dst: *mut T)
  1273. impl<T> core::convert::From<T> for aya_obj::btf::Typedef
  1274. pub fn aya_obj::btf::Typedef::from(t: T) -> T
  1275. #[repr(C)] pub struct aya_obj::btf::Union
  1276. impl core::clone::Clone for aya_obj::btf::Union
  1277. pub fn aya_obj::btf::Union::clone(&self) -> aya_obj::btf::Union
  1278. impl core::fmt::Debug for aya_obj::btf::Union
  1279. pub fn aya_obj::btf::Union::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1280. impl core::marker::Freeze for aya_obj::btf::Union
  1281. impl core::marker::Send for aya_obj::btf::Union
  1282. impl core::marker::Sync for aya_obj::btf::Union
  1283. impl core::marker::Unpin for aya_obj::btf::Union
  1284. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Union
  1285. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Union
  1286. impl<T, U> core::convert::Into<U> for aya_obj::btf::Union where U: core::convert::From<T>
  1287. pub fn aya_obj::btf::Union::into(self) -> U
  1288. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Union where U: core::convert::Into<T>
  1289. pub type aya_obj::btf::Union::Error = core::convert::Infallible
  1290. pub fn aya_obj::btf::Union::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1291. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Union where U: core::convert::TryFrom<T>
  1292. pub type aya_obj::btf::Union::Error = <U as core::convert::TryFrom<T>>::Error
  1293. pub fn aya_obj::btf::Union::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1294. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Union where T: core::clone::Clone
  1295. pub type aya_obj::btf::Union::Owned = T
  1296. pub fn aya_obj::btf::Union::clone_into(&self, target: &mut T)
  1297. pub fn aya_obj::btf::Union::to_owned(&self) -> T
  1298. impl<T> core::any::Any for aya_obj::btf::Union where T: 'static + core::marker::Sized
  1299. pub fn aya_obj::btf::Union::type_id(&self) -> core::any::TypeId
  1300. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Union where T: core::marker::Sized
  1301. pub fn aya_obj::btf::Union::borrow(&self) -> &T
  1302. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Union where T: core::marker::Sized
  1303. pub fn aya_obj::btf::Union::borrow_mut(&mut self) -> &mut T
  1304. impl<T> core::clone::CloneToUninit for aya_obj::btf::Union where T: core::clone::Clone
  1305. pub unsafe fn aya_obj::btf::Union::clone_to_uninit(&self, dst: *mut T)
  1306. impl<T> core::convert::From<T> for aya_obj::btf::Union
  1307. pub fn aya_obj::btf::Union::from(t: T) -> T
  1308. #[repr(C)] pub struct aya_obj::btf::Var
  1309. impl aya_obj::btf::Var
  1310. pub fn aya_obj::btf::Var::new(name_offset: u32, btf_type: u32, linkage: aya_obj::btf::VarLinkage) -> Self
  1311. impl core::clone::Clone for aya_obj::btf::Var
  1312. pub fn aya_obj::btf::Var::clone(&self) -> aya_obj::btf::Var
  1313. impl core::fmt::Debug for aya_obj::btf::Var
  1314. pub fn aya_obj::btf::Var::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1315. impl core::marker::Freeze for aya_obj::btf::Var
  1316. impl core::marker::Send for aya_obj::btf::Var
  1317. impl core::marker::Sync for aya_obj::btf::Var
  1318. impl core::marker::Unpin for aya_obj::btf::Var
  1319. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Var
  1320. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Var
  1321. impl<T, U> core::convert::Into<U> for aya_obj::btf::Var where U: core::convert::From<T>
  1322. pub fn aya_obj::btf::Var::into(self) -> U
  1323. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Var where U: core::convert::Into<T>
  1324. pub type aya_obj::btf::Var::Error = core::convert::Infallible
  1325. pub fn aya_obj::btf::Var::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1326. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Var where U: core::convert::TryFrom<T>
  1327. pub type aya_obj::btf::Var::Error = <U as core::convert::TryFrom<T>>::Error
  1328. pub fn aya_obj::btf::Var::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1329. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Var where T: core::clone::Clone
  1330. pub type aya_obj::btf::Var::Owned = T
  1331. pub fn aya_obj::btf::Var::clone_into(&self, target: &mut T)
  1332. pub fn aya_obj::btf::Var::to_owned(&self) -> T
  1333. impl<T> core::any::Any for aya_obj::btf::Var where T: 'static + core::marker::Sized
  1334. pub fn aya_obj::btf::Var::type_id(&self) -> core::any::TypeId
  1335. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Var where T: core::marker::Sized
  1336. pub fn aya_obj::btf::Var::borrow(&self) -> &T
  1337. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Var where T: core::marker::Sized
  1338. pub fn aya_obj::btf::Var::borrow_mut(&mut self) -> &mut T
  1339. impl<T> core::clone::CloneToUninit for aya_obj::btf::Var where T: core::clone::Clone
  1340. pub unsafe fn aya_obj::btf::Var::clone_to_uninit(&self, dst: *mut T)
  1341. impl<T> core::convert::From<T> for aya_obj::btf::Var
  1342. pub fn aya_obj::btf::Var::from(t: T) -> T
  1343. #[repr(C)] pub struct aya_obj::btf::Volatile
  1344. impl core::clone::Clone for aya_obj::btf::Volatile
  1345. pub fn aya_obj::btf::Volatile::clone(&self) -> aya_obj::btf::Volatile
  1346. impl core::fmt::Debug for aya_obj::btf::Volatile
  1347. pub fn aya_obj::btf::Volatile::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1348. impl core::marker::Freeze for aya_obj::btf::Volatile
  1349. impl core::marker::Send for aya_obj::btf::Volatile
  1350. impl core::marker::Sync for aya_obj::btf::Volatile
  1351. impl core::marker::Unpin for aya_obj::btf::Volatile
  1352. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::btf::Volatile
  1353. impl core::panic::unwind_safe::UnwindSafe for aya_obj::btf::Volatile
  1354. impl<T, U> core::convert::Into<U> for aya_obj::btf::Volatile where U: core::convert::From<T>
  1355. pub fn aya_obj::btf::Volatile::into(self) -> U
  1356. impl<T, U> core::convert::TryFrom<U> for aya_obj::btf::Volatile where U: core::convert::Into<T>
  1357. pub type aya_obj::btf::Volatile::Error = core::convert::Infallible
  1358. pub fn aya_obj::btf::Volatile::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1359. impl<T, U> core::convert::TryInto<U> for aya_obj::btf::Volatile where U: core::convert::TryFrom<T>
  1360. pub type aya_obj::btf::Volatile::Error = <U as core::convert::TryFrom<T>>::Error
  1361. pub fn aya_obj::btf::Volatile::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1362. impl<T> alloc::borrow::ToOwned for aya_obj::btf::Volatile where T: core::clone::Clone
  1363. pub type aya_obj::btf::Volatile::Owned = T
  1364. pub fn aya_obj::btf::Volatile::clone_into(&self, target: &mut T)
  1365. pub fn aya_obj::btf::Volatile::to_owned(&self) -> T
  1366. impl<T> core::any::Any for aya_obj::btf::Volatile where T: 'static + core::marker::Sized
  1367. pub fn aya_obj::btf::Volatile::type_id(&self) -> core::any::TypeId
  1368. impl<T> core::borrow::Borrow<T> for aya_obj::btf::Volatile where T: core::marker::Sized
  1369. pub fn aya_obj::btf::Volatile::borrow(&self) -> &T
  1370. impl<T> core::borrow::BorrowMut<T> for aya_obj::btf::Volatile where T: core::marker::Sized
  1371. pub fn aya_obj::btf::Volatile::borrow_mut(&mut self) -> &mut T
  1372. impl<T> core::clone::CloneToUninit for aya_obj::btf::Volatile where T: core::clone::Clone
  1373. pub unsafe fn aya_obj::btf::Volatile::clone_to_uninit(&self, dst: *mut T)
  1374. impl<T> core::convert::From<T> for aya_obj::btf::Volatile
  1375. pub fn aya_obj::btf::Volatile::from(t: T) -> T
  1376. pub mod aya_obj::generated
  1377. pub mod aya_obj::generated::bpf_core_relo_kind
  1378. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_ENUMVAL_EXISTS: aya_obj::generated::bpf_core_relo_kind::Type
  1379. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_ENUMVAL_VALUE: aya_obj::generated::bpf_core_relo_kind::Type
  1380. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_BYTE_OFFSET: aya_obj::generated::bpf_core_relo_kind::Type
  1381. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_BYTE_SIZE: aya_obj::generated::bpf_core_relo_kind::Type
  1382. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_EXISTS: aya_obj::generated::bpf_core_relo_kind::Type
  1383. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_LSHIFT_U64: aya_obj::generated::bpf_core_relo_kind::Type
  1384. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_RSHIFT_U64: aya_obj::generated::bpf_core_relo_kind::Type
  1385. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_FIELD_SIGNED: aya_obj::generated::bpf_core_relo_kind::Type
  1386. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_EXISTS: aya_obj::generated::bpf_core_relo_kind::Type
  1387. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_ID_LOCAL: aya_obj::generated::bpf_core_relo_kind::Type
  1388. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_ID_TARGET: aya_obj::generated::bpf_core_relo_kind::Type
  1389. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_MATCHES: aya_obj::generated::bpf_core_relo_kind::Type
  1390. pub const aya_obj::generated::bpf_core_relo_kind::BPF_CORE_TYPE_SIZE: aya_obj::generated::bpf_core_relo_kind::Type
  1391. pub type aya_obj::generated::bpf_core_relo_kind::Type = core::ffi::c_uint
  1392. #[repr(u32)] pub enum aya_obj::generated::bpf_attach_type
  1393. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_DEVICE = 6
  1394. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_GETSOCKOPT = 21
  1395. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_BIND = 8
  1396. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_CONNECT = 10
  1397. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_GETPEERNAME = 29
  1398. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_GETSOCKNAME = 31
  1399. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET4_POST_BIND = 12
  1400. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_BIND = 9
  1401. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_CONNECT = 11
  1402. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_GETPEERNAME = 30
  1403. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_GETSOCKNAME = 32
  1404. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET6_POST_BIND = 13
  1405. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_EGRESS = 1
  1406. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_INGRESS = 0
  1407. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_SOCK_CREATE = 2
  1408. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_INET_SOCK_RELEASE = 34
  1409. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_SETSOCKOPT = 22
  1410. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_SOCK_OPS = 3
  1411. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_SYSCTL = 18
  1412. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP4_RECVMSG = 19
  1413. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP4_SENDMSG = 14
  1414. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP6_RECVMSG = 20
  1415. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UDP6_SENDMSG = 15
  1416. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UNIX_CONNECT = 49
  1417. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UNIX_GETPEERNAME = 52
  1418. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UNIX_GETSOCKNAME = 53
  1419. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UNIX_RECVMSG = 51
  1420. pub aya_obj::generated::bpf_attach_type::BPF_CGROUP_UNIX_SENDMSG = 50
  1421. pub aya_obj::generated::bpf_attach_type::BPF_FLOW_DISSECTOR = 17
  1422. pub aya_obj::generated::bpf_attach_type::BPF_LIRC_MODE2 = 16
  1423. pub aya_obj::generated::bpf_attach_type::BPF_LSM_CGROUP = 43
  1424. pub aya_obj::generated::bpf_attach_type::BPF_LSM_MAC = 27
  1425. pub aya_obj::generated::bpf_attach_type::BPF_MODIFY_RETURN = 26
  1426. pub aya_obj::generated::bpf_attach_type::BPF_NETFILTER = 45
  1427. pub aya_obj::generated::bpf_attach_type::BPF_NETKIT_PEER = 55
  1428. pub aya_obj::generated::bpf_attach_type::BPF_NETKIT_PRIMARY = 54
  1429. pub aya_obj::generated::bpf_attach_type::BPF_PERF_EVENT = 41
  1430. pub aya_obj::generated::bpf_attach_type::BPF_SK_LOOKUP = 36
  1431. pub aya_obj::generated::bpf_attach_type::BPF_SK_MSG_VERDICT = 7
  1432. pub aya_obj::generated::bpf_attach_type::BPF_SK_REUSEPORT_SELECT = 39
  1433. pub aya_obj::generated::bpf_attach_type::BPF_SK_REUSEPORT_SELECT_OR_MIGRATE = 40
  1434. pub aya_obj::generated::bpf_attach_type::BPF_SK_SKB_STREAM_PARSER = 4
  1435. pub aya_obj::generated::bpf_attach_type::BPF_SK_SKB_STREAM_VERDICT = 5
  1436. pub aya_obj::generated::bpf_attach_type::BPF_SK_SKB_VERDICT = 38
  1437. pub aya_obj::generated::bpf_attach_type::BPF_STRUCT_OPS = 44
  1438. pub aya_obj::generated::bpf_attach_type::BPF_TCX_EGRESS = 47
  1439. pub aya_obj::generated::bpf_attach_type::BPF_TCX_INGRESS = 46
  1440. pub aya_obj::generated::bpf_attach_type::BPF_TRACE_FENTRY = 24
  1441. pub aya_obj::generated::bpf_attach_type::BPF_TRACE_FEXIT = 25
  1442. pub aya_obj::generated::bpf_attach_type::BPF_TRACE_ITER = 28
  1443. pub aya_obj::generated::bpf_attach_type::BPF_TRACE_KPROBE_MULTI = 42
  1444. pub aya_obj::generated::bpf_attach_type::BPF_TRACE_RAW_TP = 23
  1445. pub aya_obj::generated::bpf_attach_type::BPF_TRACE_UPROBE_MULTI = 48
  1446. pub aya_obj::generated::bpf_attach_type::BPF_XDP = 37
  1447. pub aya_obj::generated::bpf_attach_type::BPF_XDP_CPUMAP = 35
  1448. pub aya_obj::generated::bpf_attach_type::BPF_XDP_DEVMAP = 33
  1449. pub aya_obj::generated::bpf_attach_type::__MAX_BPF_ATTACH_TYPE = 56
  1450. impl core::clone::Clone for aya_obj::generated::bpf_attach_type
  1451. pub fn aya_obj::generated::bpf_attach_type::clone(&self) -> aya_obj::generated::bpf_attach_type
  1452. impl core::cmp::Eq for aya_obj::generated::bpf_attach_type
  1453. impl core::cmp::PartialEq for aya_obj::generated::bpf_attach_type
  1454. pub fn aya_obj::generated::bpf_attach_type::eq(&self, other: &aya_obj::generated::bpf_attach_type) -> bool
  1455. impl core::convert::From<aya_obj::programs::cgroup_sock::CgroupSockAttachType> for aya_obj::generated::bpf_attach_type
  1456. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> aya_obj::generated::bpf_attach_type
  1457. impl core::convert::From<aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType> for aya_obj::generated::bpf_attach_type
  1458. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> aya_obj::generated::bpf_attach_type
  1459. impl core::convert::From<aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType> for aya_obj::generated::bpf_attach_type
  1460. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> aya_obj::generated::bpf_attach_type
  1461. impl core::convert::From<aya_obj::programs::xdp::XdpAttachType> for aya_obj::generated::bpf_attach_type
  1462. pub fn aya_obj::generated::bpf_attach_type::from(value: aya_obj::programs::xdp::XdpAttachType) -> Self
  1463. impl core::fmt::Debug for aya_obj::generated::bpf_attach_type
  1464. pub fn aya_obj::generated::bpf_attach_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1465. impl core::hash::Hash for aya_obj::generated::bpf_attach_type
  1466. pub fn aya_obj::generated::bpf_attach_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1467. impl core::marker::Copy for aya_obj::generated::bpf_attach_type
  1468. impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_attach_type
  1469. impl core::marker::Freeze for aya_obj::generated::bpf_attach_type
  1470. impl core::marker::Send for aya_obj::generated::bpf_attach_type
  1471. impl core::marker::Sync for aya_obj::generated::bpf_attach_type
  1472. impl core::marker::Unpin for aya_obj::generated::bpf_attach_type
  1473. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attach_type
  1474. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attach_type
  1475. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attach_type where U: core::convert::From<T>
  1476. pub fn aya_obj::generated::bpf_attach_type::into(self) -> U
  1477. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attach_type where U: core::convert::Into<T>
  1478. pub type aya_obj::generated::bpf_attach_type::Error = core::convert::Infallible
  1479. pub fn aya_obj::generated::bpf_attach_type::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1480. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attach_type where U: core::convert::TryFrom<T>
  1481. pub type aya_obj::generated::bpf_attach_type::Error = <U as core::convert::TryFrom<T>>::Error
  1482. pub fn aya_obj::generated::bpf_attach_type::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1483. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attach_type where T: core::clone::Clone
  1484. pub type aya_obj::generated::bpf_attach_type::Owned = T
  1485. pub fn aya_obj::generated::bpf_attach_type::clone_into(&self, target: &mut T)
  1486. pub fn aya_obj::generated::bpf_attach_type::to_owned(&self) -> T
  1487. impl<T> core::any::Any for aya_obj::generated::bpf_attach_type where T: 'static + core::marker::Sized
  1488. pub fn aya_obj::generated::bpf_attach_type::type_id(&self) -> core::any::TypeId
  1489. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attach_type where T: core::marker::Sized
  1490. pub fn aya_obj::generated::bpf_attach_type::borrow(&self) -> &T
  1491. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attach_type where T: core::marker::Sized
  1492. pub fn aya_obj::generated::bpf_attach_type::borrow_mut(&mut self) -> &mut T
  1493. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attach_type where T: core::clone::Clone
  1494. pub unsafe fn aya_obj::generated::bpf_attach_type::clone_to_uninit(&self, dst: *mut T)
  1495. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attach_type where T: core::marker::Copy
  1496. pub unsafe fn aya_obj::generated::bpf_attach_type::clone_to_uninit(&self, dst: *mut T)
  1497. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attach_type
  1498. pub fn aya_obj::generated::bpf_attach_type::from(t: T) -> T
  1499. #[repr(u32)] pub enum aya_obj::generated::bpf_cmd
  1500. pub aya_obj::generated::bpf_cmd::BPF_BTF_GET_FD_BY_ID = 19
  1501. pub aya_obj::generated::bpf_cmd::BPF_BTF_GET_NEXT_ID = 23
  1502. pub aya_obj::generated::bpf_cmd::BPF_BTF_LOAD = 18
  1503. pub aya_obj::generated::bpf_cmd::BPF_ENABLE_STATS = 32
  1504. pub aya_obj::generated::bpf_cmd::BPF_ITER_CREATE = 33
  1505. pub aya_obj::generated::bpf_cmd::BPF_LINK_CREATE = 28
  1506. pub aya_obj::generated::bpf_cmd::BPF_LINK_DETACH = 34
  1507. pub aya_obj::generated::bpf_cmd::BPF_LINK_GET_FD_BY_ID = 30
  1508. pub aya_obj::generated::bpf_cmd::BPF_LINK_GET_NEXT_ID = 31
  1509. pub aya_obj::generated::bpf_cmd::BPF_LINK_UPDATE = 29
  1510. pub aya_obj::generated::bpf_cmd::BPF_MAP_CREATE = 0
  1511. pub aya_obj::generated::bpf_cmd::BPF_MAP_DELETE_BATCH = 27
  1512. pub aya_obj::generated::bpf_cmd::BPF_MAP_DELETE_ELEM = 3
  1513. pub aya_obj::generated::bpf_cmd::BPF_MAP_FREEZE = 22
  1514. pub aya_obj::generated::bpf_cmd::BPF_MAP_GET_FD_BY_ID = 14
  1515. pub aya_obj::generated::bpf_cmd::BPF_MAP_GET_NEXT_ID = 12
  1516. pub aya_obj::generated::bpf_cmd::BPF_MAP_GET_NEXT_KEY = 4
  1517. pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25
  1518. pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21
  1519. pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_BATCH = 24
  1520. pub aya_obj::generated::bpf_cmd::BPF_MAP_LOOKUP_ELEM = 1
  1521. pub aya_obj::generated::bpf_cmd::BPF_MAP_UPDATE_BATCH = 26
  1522. pub aya_obj::generated::bpf_cmd::BPF_MAP_UPDATE_ELEM = 2
  1523. pub aya_obj::generated::bpf_cmd::BPF_OBJ_GET = 7
  1524. pub aya_obj::generated::bpf_cmd::BPF_OBJ_GET_INFO_BY_FD = 15
  1525. pub aya_obj::generated::bpf_cmd::BPF_OBJ_PIN = 6
  1526. pub aya_obj::generated::bpf_cmd::BPF_PROG_ATTACH = 8
  1527. pub aya_obj::generated::bpf_cmd::BPF_PROG_BIND_MAP = 35
  1528. pub aya_obj::generated::bpf_cmd::BPF_PROG_DETACH = 9
  1529. pub aya_obj::generated::bpf_cmd::BPF_PROG_GET_FD_BY_ID = 13
  1530. pub aya_obj::generated::bpf_cmd::BPF_PROG_GET_NEXT_ID = 11
  1531. pub aya_obj::generated::bpf_cmd::BPF_PROG_LOAD = 5
  1532. pub aya_obj::generated::bpf_cmd::BPF_PROG_QUERY = 16
  1533. pub aya_obj::generated::bpf_cmd::BPF_PROG_TEST_RUN = 10
  1534. pub aya_obj::generated::bpf_cmd::BPF_RAW_TRACEPOINT_OPEN = 17
  1535. pub aya_obj::generated::bpf_cmd::BPF_TASK_FD_QUERY = 20
  1536. pub aya_obj::generated::bpf_cmd::BPF_TOKEN_CREATE = 36
  1537. pub aya_obj::generated::bpf_cmd::__MAX_BPF_CMD = 37
  1538. impl aya_obj::generated::bpf_cmd
  1539. pub const aya_obj::generated::bpf_cmd::BPF_PROG_RUN: aya_obj::generated::bpf_cmd
  1540. impl core::clone::Clone for aya_obj::generated::bpf_cmd
  1541. pub fn aya_obj::generated::bpf_cmd::clone(&self) -> aya_obj::generated::bpf_cmd
  1542. impl core::cmp::Eq for aya_obj::generated::bpf_cmd
  1543. impl core::cmp::PartialEq for aya_obj::generated::bpf_cmd
  1544. pub fn aya_obj::generated::bpf_cmd::eq(&self, other: &aya_obj::generated::bpf_cmd) -> bool
  1545. impl core::fmt::Debug for aya_obj::generated::bpf_cmd
  1546. pub fn aya_obj::generated::bpf_cmd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1547. impl core::hash::Hash for aya_obj::generated::bpf_cmd
  1548. pub fn aya_obj::generated::bpf_cmd::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1549. impl core::marker::Copy for aya_obj::generated::bpf_cmd
  1550. impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_cmd
  1551. impl core::marker::Freeze for aya_obj::generated::bpf_cmd
  1552. impl core::marker::Send for aya_obj::generated::bpf_cmd
  1553. impl core::marker::Sync for aya_obj::generated::bpf_cmd
  1554. impl core::marker::Unpin for aya_obj::generated::bpf_cmd
  1555. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_cmd
  1556. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_cmd
  1557. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_cmd where U: core::convert::From<T>
  1558. pub fn aya_obj::generated::bpf_cmd::into(self) -> U
  1559. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_cmd where U: core::convert::Into<T>
  1560. pub type aya_obj::generated::bpf_cmd::Error = core::convert::Infallible
  1561. pub fn aya_obj::generated::bpf_cmd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1562. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_cmd where U: core::convert::TryFrom<T>
  1563. pub type aya_obj::generated::bpf_cmd::Error = <U as core::convert::TryFrom<T>>::Error
  1564. pub fn aya_obj::generated::bpf_cmd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1565. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_cmd where T: core::clone::Clone
  1566. pub type aya_obj::generated::bpf_cmd::Owned = T
  1567. pub fn aya_obj::generated::bpf_cmd::clone_into(&self, target: &mut T)
  1568. pub fn aya_obj::generated::bpf_cmd::to_owned(&self) -> T
  1569. impl<T> core::any::Any for aya_obj::generated::bpf_cmd where T: 'static + core::marker::Sized
  1570. pub fn aya_obj::generated::bpf_cmd::type_id(&self) -> core::any::TypeId
  1571. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_cmd where T: core::marker::Sized
  1572. pub fn aya_obj::generated::bpf_cmd::borrow(&self) -> &T
  1573. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_cmd where T: core::marker::Sized
  1574. pub fn aya_obj::generated::bpf_cmd::borrow_mut(&mut self) -> &mut T
  1575. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_cmd where T: core::clone::Clone
  1576. pub unsafe fn aya_obj::generated::bpf_cmd::clone_to_uninit(&self, dst: *mut T)
  1577. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_cmd where T: core::marker::Copy
  1578. pub unsafe fn aya_obj::generated::bpf_cmd::clone_to_uninit(&self, dst: *mut T)
  1579. impl<T> core::convert::From<T> for aya_obj::generated::bpf_cmd
  1580. pub fn aya_obj::generated::bpf_cmd::from(t: T) -> T
  1581. #[repr(u32)] pub enum aya_obj::generated::bpf_link_type
  1582. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_CGROUP = 3
  1583. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_ITER = 4
  1584. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_KPROBE_MULTI = 8
  1585. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_NETFILTER = 10
  1586. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_NETKIT = 13
  1587. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_NETNS = 5
  1588. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_PERF_EVENT = 7
  1589. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_RAW_TRACEPOINT = 1
  1590. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_STRUCT_OPS = 9
  1591. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_TCX = 11
  1592. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_TRACING = 2
  1593. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_UNSPEC = 0
  1594. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_UPROBE_MULTI = 12
  1595. pub aya_obj::generated::bpf_link_type::BPF_LINK_TYPE_XDP = 6
  1596. pub aya_obj::generated::bpf_link_type::__MAX_BPF_LINK_TYPE = 14
  1597. impl core::clone::Clone for aya_obj::generated::bpf_link_type
  1598. pub fn aya_obj::generated::bpf_link_type::clone(&self) -> aya_obj::generated::bpf_link_type
  1599. impl core::cmp::Eq for aya_obj::generated::bpf_link_type
  1600. impl core::cmp::PartialEq for aya_obj::generated::bpf_link_type
  1601. pub fn aya_obj::generated::bpf_link_type::eq(&self, other: &aya_obj::generated::bpf_link_type) -> bool
  1602. impl core::fmt::Debug for aya_obj::generated::bpf_link_type
  1603. pub fn aya_obj::generated::bpf_link_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1604. impl core::hash::Hash for aya_obj::generated::bpf_link_type
  1605. pub fn aya_obj::generated::bpf_link_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1606. impl core::marker::Copy for aya_obj::generated::bpf_link_type
  1607. impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_link_type
  1608. impl core::marker::Freeze for aya_obj::generated::bpf_link_type
  1609. impl core::marker::Send for aya_obj::generated::bpf_link_type
  1610. impl core::marker::Sync for aya_obj::generated::bpf_link_type
  1611. impl core::marker::Unpin for aya_obj::generated::bpf_link_type
  1612. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_type
  1613. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_type
  1614. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_type where U: core::convert::From<T>
  1615. pub fn aya_obj::generated::bpf_link_type::into(self) -> U
  1616. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_type where U: core::convert::Into<T>
  1617. pub type aya_obj::generated::bpf_link_type::Error = core::convert::Infallible
  1618. pub fn aya_obj::generated::bpf_link_type::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1619. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_type where U: core::convert::TryFrom<T>
  1620. pub type aya_obj::generated::bpf_link_type::Error = <U as core::convert::TryFrom<T>>::Error
  1621. pub fn aya_obj::generated::bpf_link_type::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1622. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_type where T: core::clone::Clone
  1623. pub type aya_obj::generated::bpf_link_type::Owned = T
  1624. pub fn aya_obj::generated::bpf_link_type::clone_into(&self, target: &mut T)
  1625. pub fn aya_obj::generated::bpf_link_type::to_owned(&self) -> T
  1626. impl<T> core::any::Any for aya_obj::generated::bpf_link_type where T: 'static + core::marker::Sized
  1627. pub fn aya_obj::generated::bpf_link_type::type_id(&self) -> core::any::TypeId
  1628. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_type where T: core::marker::Sized
  1629. pub fn aya_obj::generated::bpf_link_type::borrow(&self) -> &T
  1630. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_type where T: core::marker::Sized
  1631. pub fn aya_obj::generated::bpf_link_type::borrow_mut(&mut self) -> &mut T
  1632. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_type where T: core::clone::Clone
  1633. pub unsafe fn aya_obj::generated::bpf_link_type::clone_to_uninit(&self, dst: *mut T)
  1634. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_type where T: core::marker::Copy
  1635. pub unsafe fn aya_obj::generated::bpf_link_type::clone_to_uninit(&self, dst: *mut T)
  1636. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_type
  1637. pub fn aya_obj::generated::bpf_link_type::from(t: T) -> T
  1638. #[repr(u32)] pub enum aya_obj::generated::bpf_map_type
  1639. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_ARENA = 33
  1640. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_ARRAY = 2
  1641. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_ARRAY_OF_MAPS = 12
  1642. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_BLOOM_FILTER = 30
  1643. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGROUP_ARRAY = 8
  1644. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED = 19
  1645. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGRP_STORAGE = 32
  1646. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CPUMAP = 16
  1647. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_DEVMAP = 14
  1648. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_DEVMAP_HASH = 25
  1649. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_HASH = 1
  1650. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_HASH_OF_MAPS = 13
  1651. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_INODE_STORAGE = 28
  1652. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_LPM_TRIE = 11
  1653. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_LRU_HASH = 9
  1654. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_LRU_PERCPU_HASH = 10
  1655. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERCPU_ARRAY = 6
  1656. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED = 21
  1657. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERCPU_HASH = 5
  1658. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4
  1659. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PROG_ARRAY = 3
  1660. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_QUEUE = 22
  1661. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20
  1662. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_RINGBUF = 27
  1663. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_SK_STORAGE = 24
  1664. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_SOCKHASH = 18
  1665. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_SOCKMAP = 15
  1666. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_STACK = 23
  1667. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_STACK_TRACE = 7
  1668. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_STRUCT_OPS = 26
  1669. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_TASK_STORAGE = 29
  1670. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_UNSPEC = 0
  1671. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_USER_RINGBUF = 31
  1672. pub aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_XSKMAP = 17
  1673. pub aya_obj::generated::bpf_map_type::__MAX_BPF_MAP_TYPE = 34
  1674. impl aya_obj::generated::bpf_map_type
  1675. pub const aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_CGROUP_STORAGE: aya_obj::generated::bpf_map_type
  1676. impl aya_obj::generated::bpf_map_type
  1677. pub const aya_obj::generated::bpf_map_type::BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE: aya_obj::generated::bpf_map_type
  1678. impl core::clone::Clone for aya_obj::generated::bpf_map_type
  1679. pub fn aya_obj::generated::bpf_map_type::clone(&self) -> aya_obj::generated::bpf_map_type
  1680. impl core::cmp::Eq for aya_obj::generated::bpf_map_type
  1681. impl core::cmp::PartialEq for aya_obj::generated::bpf_map_type
  1682. pub fn aya_obj::generated::bpf_map_type::eq(&self, other: &aya_obj::generated::bpf_map_type) -> bool
  1683. impl core::convert::TryFrom<u32> for aya_obj::generated::bpf_map_type
  1684. pub type aya_obj::generated::bpf_map_type::Error = aya_obj::maps::InvalidMapTypeError
  1685. pub fn aya_obj::generated::bpf_map_type::try_from(map_type: u32) -> core::result::Result<Self, Self::Error>
  1686. impl core::fmt::Debug for aya_obj::generated::bpf_map_type
  1687. pub fn aya_obj::generated::bpf_map_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1688. impl core::hash::Hash for aya_obj::generated::bpf_map_type
  1689. pub fn aya_obj::generated::bpf_map_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1690. impl core::marker::Copy for aya_obj::generated::bpf_map_type
  1691. impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_map_type
  1692. impl core::marker::Freeze for aya_obj::generated::bpf_map_type
  1693. impl core::marker::Send for aya_obj::generated::bpf_map_type
  1694. impl core::marker::Sync for aya_obj::generated::bpf_map_type
  1695. impl core::marker::Unpin for aya_obj::generated::bpf_map_type
  1696. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_map_type
  1697. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_map_type
  1698. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_map_type where U: core::convert::From<T>
  1699. pub fn aya_obj::generated::bpf_map_type::into(self) -> U
  1700. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_map_type where U: core::convert::Into<T>
  1701. pub type aya_obj::generated::bpf_map_type::Error = core::convert::Infallible
  1702. pub fn aya_obj::generated::bpf_map_type::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1703. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_map_type where U: core::convert::TryFrom<T>
  1704. pub type aya_obj::generated::bpf_map_type::Error = <U as core::convert::TryFrom<T>>::Error
  1705. pub fn aya_obj::generated::bpf_map_type::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1706. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_map_type where T: core::clone::Clone
  1707. pub type aya_obj::generated::bpf_map_type::Owned = T
  1708. pub fn aya_obj::generated::bpf_map_type::clone_into(&self, target: &mut T)
  1709. pub fn aya_obj::generated::bpf_map_type::to_owned(&self) -> T
  1710. impl<T> core::any::Any for aya_obj::generated::bpf_map_type where T: 'static + core::marker::Sized
  1711. pub fn aya_obj::generated::bpf_map_type::type_id(&self) -> core::any::TypeId
  1712. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_map_type where T: core::marker::Sized
  1713. pub fn aya_obj::generated::bpf_map_type::borrow(&self) -> &T
  1714. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_map_type where T: core::marker::Sized
  1715. pub fn aya_obj::generated::bpf_map_type::borrow_mut(&mut self) -> &mut T
  1716. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_map_type where T: core::clone::Clone
  1717. pub unsafe fn aya_obj::generated::bpf_map_type::clone_to_uninit(&self, dst: *mut T)
  1718. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_map_type where T: core::marker::Copy
  1719. pub unsafe fn aya_obj::generated::bpf_map_type::clone_to_uninit(&self, dst: *mut T)
  1720. impl<T> core::convert::From<T> for aya_obj::generated::bpf_map_type
  1721. pub fn aya_obj::generated::bpf_map_type::from(t: T) -> T
  1722. #[repr(u32)] pub enum aya_obj::generated::bpf_prog_type
  1723. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_DEVICE = 15
  1724. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SKB = 8
  1725. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCK = 9
  1726. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCKOPT = 25
  1727. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18
  1728. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_CGROUP_SYSCTL = 23
  1729. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_EXT = 28
  1730. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_FLOW_DISSECTOR = 22
  1731. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_KPROBE = 2
  1732. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LIRC_MODE2 = 20
  1733. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LSM = 29
  1734. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_IN = 10
  1735. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_OUT = 11
  1736. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_SEG6LOCAL = 19
  1737. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_LWT_XMIT = 12
  1738. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_NETFILTER = 32
  1739. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_PERF_EVENT = 7
  1740. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_RAW_TRACEPOINT = 17
  1741. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24
  1742. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SCHED_ACT = 4
  1743. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SCHED_CLS = 3
  1744. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_LOOKUP = 30
  1745. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_MSG = 16
  1746. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_REUSEPORT = 21
  1747. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SK_SKB = 14
  1748. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SOCKET_FILTER = 1
  1749. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SOCK_OPS = 13
  1750. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_STRUCT_OPS = 27
  1751. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_SYSCALL = 31
  1752. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_TRACEPOINT = 5
  1753. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_TRACING = 26
  1754. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_UNSPEC = 0
  1755. pub aya_obj::generated::bpf_prog_type::BPF_PROG_TYPE_XDP = 6
  1756. pub aya_obj::generated::bpf_prog_type::__MAX_BPF_PROG_TYPE = 33
  1757. impl core::clone::Clone for aya_obj::generated::bpf_prog_type
  1758. pub fn aya_obj::generated::bpf_prog_type::clone(&self) -> aya_obj::generated::bpf_prog_type
  1759. impl core::cmp::Eq for aya_obj::generated::bpf_prog_type
  1760. impl core::cmp::PartialEq for aya_obj::generated::bpf_prog_type
  1761. pub fn aya_obj::generated::bpf_prog_type::eq(&self, other: &aya_obj::generated::bpf_prog_type) -> bool
  1762. impl core::fmt::Debug for aya_obj::generated::bpf_prog_type
  1763. pub fn aya_obj::generated::bpf_prog_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1764. impl core::hash::Hash for aya_obj::generated::bpf_prog_type
  1765. pub fn aya_obj::generated::bpf_prog_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1766. impl core::marker::Copy for aya_obj::generated::bpf_prog_type
  1767. impl core::marker::StructuralPartialEq for aya_obj::generated::bpf_prog_type
  1768. impl core::marker::Freeze for aya_obj::generated::bpf_prog_type
  1769. impl core::marker::Send for aya_obj::generated::bpf_prog_type
  1770. impl core::marker::Sync for aya_obj::generated::bpf_prog_type
  1771. impl core::marker::Unpin for aya_obj::generated::bpf_prog_type
  1772. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_prog_type
  1773. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_prog_type
  1774. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_prog_type where U: core::convert::From<T>
  1775. pub fn aya_obj::generated::bpf_prog_type::into(self) -> U
  1776. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_prog_type where U: core::convert::Into<T>
  1777. pub type aya_obj::generated::bpf_prog_type::Error = core::convert::Infallible
  1778. pub fn aya_obj::generated::bpf_prog_type::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1779. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_prog_type where U: core::convert::TryFrom<T>
  1780. pub type aya_obj::generated::bpf_prog_type::Error = <U as core::convert::TryFrom<T>>::Error
  1781. pub fn aya_obj::generated::bpf_prog_type::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1782. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_prog_type where T: core::clone::Clone
  1783. pub type aya_obj::generated::bpf_prog_type::Owned = T
  1784. pub fn aya_obj::generated::bpf_prog_type::clone_into(&self, target: &mut T)
  1785. pub fn aya_obj::generated::bpf_prog_type::to_owned(&self) -> T
  1786. impl<T> core::any::Any for aya_obj::generated::bpf_prog_type where T: 'static + core::marker::Sized
  1787. pub fn aya_obj::generated::bpf_prog_type::type_id(&self) -> core::any::TypeId
  1788. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_prog_type where T: core::marker::Sized
  1789. pub fn aya_obj::generated::bpf_prog_type::borrow(&self) -> &T
  1790. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_prog_type where T: core::marker::Sized
  1791. pub fn aya_obj::generated::bpf_prog_type::borrow_mut(&mut self) -> &mut T
  1792. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_prog_type where T: core::clone::Clone
  1793. pub unsafe fn aya_obj::generated::bpf_prog_type::clone_to_uninit(&self, dst: *mut T)
  1794. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_prog_type where T: core::marker::Copy
  1795. pub unsafe fn aya_obj::generated::bpf_prog_type::clone_to_uninit(&self, dst: *mut T)
  1796. impl<T> core::convert::From<T> for aya_obj::generated::bpf_prog_type
  1797. pub fn aya_obj::generated::bpf_prog_type::from(t: T) -> T
  1798. #[repr(u32)] pub enum aya_obj::generated::btf_func_linkage
  1799. pub aya_obj::generated::btf_func_linkage::BTF_FUNC_EXTERN = 2
  1800. pub aya_obj::generated::btf_func_linkage::BTF_FUNC_GLOBAL = 1
  1801. pub aya_obj::generated::btf_func_linkage::BTF_FUNC_STATIC = 0
  1802. impl core::clone::Clone for aya_obj::generated::btf_func_linkage
  1803. pub fn aya_obj::generated::btf_func_linkage::clone(&self) -> aya_obj::generated::btf_func_linkage
  1804. impl core::cmp::Eq for aya_obj::generated::btf_func_linkage
  1805. impl core::cmp::PartialEq for aya_obj::generated::btf_func_linkage
  1806. pub fn aya_obj::generated::btf_func_linkage::eq(&self, other: &aya_obj::generated::btf_func_linkage) -> bool
  1807. impl core::fmt::Debug for aya_obj::generated::btf_func_linkage
  1808. pub fn aya_obj::generated::btf_func_linkage::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1809. impl core::hash::Hash for aya_obj::generated::btf_func_linkage
  1810. pub fn aya_obj::generated::btf_func_linkage::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1811. impl core::marker::Copy for aya_obj::generated::btf_func_linkage
  1812. impl core::marker::StructuralPartialEq for aya_obj::generated::btf_func_linkage
  1813. impl core::marker::Freeze for aya_obj::generated::btf_func_linkage
  1814. impl core::marker::Send for aya_obj::generated::btf_func_linkage
  1815. impl core::marker::Sync for aya_obj::generated::btf_func_linkage
  1816. impl core::marker::Unpin for aya_obj::generated::btf_func_linkage
  1817. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_func_linkage
  1818. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_func_linkage
  1819. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_func_linkage where U: core::convert::From<T>
  1820. pub fn aya_obj::generated::btf_func_linkage::into(self) -> U
  1821. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_func_linkage where U: core::convert::Into<T>
  1822. pub type aya_obj::generated::btf_func_linkage::Error = core::convert::Infallible
  1823. pub fn aya_obj::generated::btf_func_linkage::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1824. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_func_linkage where U: core::convert::TryFrom<T>
  1825. pub type aya_obj::generated::btf_func_linkage::Error = <U as core::convert::TryFrom<T>>::Error
  1826. pub fn aya_obj::generated::btf_func_linkage::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1827. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_func_linkage where T: core::clone::Clone
  1828. pub type aya_obj::generated::btf_func_linkage::Owned = T
  1829. pub fn aya_obj::generated::btf_func_linkage::clone_into(&self, target: &mut T)
  1830. pub fn aya_obj::generated::btf_func_linkage::to_owned(&self) -> T
  1831. impl<T> core::any::Any for aya_obj::generated::btf_func_linkage where T: 'static + core::marker::Sized
  1832. pub fn aya_obj::generated::btf_func_linkage::type_id(&self) -> core::any::TypeId
  1833. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_func_linkage where T: core::marker::Sized
  1834. pub fn aya_obj::generated::btf_func_linkage::borrow(&self) -> &T
  1835. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_func_linkage where T: core::marker::Sized
  1836. pub fn aya_obj::generated::btf_func_linkage::borrow_mut(&mut self) -> &mut T
  1837. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_func_linkage where T: core::clone::Clone
  1838. pub unsafe fn aya_obj::generated::btf_func_linkage::clone_to_uninit(&self, dst: *mut T)
  1839. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_func_linkage where T: core::marker::Copy
  1840. pub unsafe fn aya_obj::generated::btf_func_linkage::clone_to_uninit(&self, dst: *mut T)
  1841. impl<T> core::convert::From<T> for aya_obj::generated::btf_func_linkage
  1842. pub fn aya_obj::generated::btf_func_linkage::from(t: T) -> T
  1843. #[repr(u32)] pub enum aya_obj::generated::perf_event_sample_format
  1844. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_ADDR = 8
  1845. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_AUX = 1048576
  1846. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_BRANCH_STACK = 2048
  1847. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CALLCHAIN = 32
  1848. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CGROUP = 2097152
  1849. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CODE_PAGE_SIZE = 8388608
  1850. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_CPU = 128
  1851. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_DATA_PAGE_SIZE = 4194304
  1852. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_DATA_SRC = 32768
  1853. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_ID = 64
  1854. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_IDENTIFIER = 65536
  1855. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_IP = 1
  1856. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_MAX = 33554432
  1857. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_PERIOD = 256
  1858. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_PHYS_ADDR = 524288
  1859. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_RAW = 1024
  1860. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_READ = 16
  1861. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_REGS_INTR = 262144
  1862. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_REGS_USER = 4096
  1863. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_STACK_USER = 8192
  1864. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_STREAM_ID = 512
  1865. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_TID = 2
  1866. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_TIME = 4
  1867. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_TRANSACTION = 131072
  1868. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_WEIGHT = 16384
  1869. pub aya_obj::generated::perf_event_sample_format::PERF_SAMPLE_WEIGHT_STRUCT = 16777216
  1870. impl core::clone::Clone for aya_obj::generated::perf_event_sample_format
  1871. pub fn aya_obj::generated::perf_event_sample_format::clone(&self) -> aya_obj::generated::perf_event_sample_format
  1872. impl core::cmp::Eq for aya_obj::generated::perf_event_sample_format
  1873. impl core::cmp::PartialEq for aya_obj::generated::perf_event_sample_format
  1874. pub fn aya_obj::generated::perf_event_sample_format::eq(&self, other: &aya_obj::generated::perf_event_sample_format) -> bool
  1875. impl core::fmt::Debug for aya_obj::generated::perf_event_sample_format
  1876. pub fn aya_obj::generated::perf_event_sample_format::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1877. impl core::hash::Hash for aya_obj::generated::perf_event_sample_format
  1878. pub fn aya_obj::generated::perf_event_sample_format::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1879. impl core::marker::Copy for aya_obj::generated::perf_event_sample_format
  1880. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_event_sample_format
  1881. impl core::marker::Freeze for aya_obj::generated::perf_event_sample_format
  1882. impl core::marker::Send for aya_obj::generated::perf_event_sample_format
  1883. impl core::marker::Sync for aya_obj::generated::perf_event_sample_format
  1884. impl core::marker::Unpin for aya_obj::generated::perf_event_sample_format
  1885. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_sample_format
  1886. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_sample_format
  1887. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_sample_format where U: core::convert::From<T>
  1888. pub fn aya_obj::generated::perf_event_sample_format::into(self) -> U
  1889. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_sample_format where U: core::convert::Into<T>
  1890. pub type aya_obj::generated::perf_event_sample_format::Error = core::convert::Infallible
  1891. pub fn aya_obj::generated::perf_event_sample_format::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1892. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_sample_format where U: core::convert::TryFrom<T>
  1893. pub type aya_obj::generated::perf_event_sample_format::Error = <U as core::convert::TryFrom<T>>::Error
  1894. pub fn aya_obj::generated::perf_event_sample_format::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1895. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_sample_format where T: core::clone::Clone
  1896. pub type aya_obj::generated::perf_event_sample_format::Owned = T
  1897. pub fn aya_obj::generated::perf_event_sample_format::clone_into(&self, target: &mut T)
  1898. pub fn aya_obj::generated::perf_event_sample_format::to_owned(&self) -> T
  1899. impl<T> core::any::Any for aya_obj::generated::perf_event_sample_format where T: 'static + core::marker::Sized
  1900. pub fn aya_obj::generated::perf_event_sample_format::type_id(&self) -> core::any::TypeId
  1901. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_sample_format where T: core::marker::Sized
  1902. pub fn aya_obj::generated::perf_event_sample_format::borrow(&self) -> &T
  1903. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_sample_format where T: core::marker::Sized
  1904. pub fn aya_obj::generated::perf_event_sample_format::borrow_mut(&mut self) -> &mut T
  1905. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_sample_format where T: core::clone::Clone
  1906. pub unsafe fn aya_obj::generated::perf_event_sample_format::clone_to_uninit(&self, dst: *mut T)
  1907. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_sample_format where T: core::marker::Copy
  1908. pub unsafe fn aya_obj::generated::perf_event_sample_format::clone_to_uninit(&self, dst: *mut T)
  1909. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_sample_format
  1910. pub fn aya_obj::generated::perf_event_sample_format::from(t: T) -> T
  1911. #[repr(u32)] pub enum aya_obj::generated::perf_event_type
  1912. pub aya_obj::generated::perf_event_type::PERF_RECORD_AUX = 11
  1913. pub aya_obj::generated::perf_event_type::PERF_RECORD_AUX_OUTPUT_HW_ID = 21
  1914. pub aya_obj::generated::perf_event_type::PERF_RECORD_BPF_EVENT = 18
  1915. pub aya_obj::generated::perf_event_type::PERF_RECORD_CGROUP = 19
  1916. pub aya_obj::generated::perf_event_type::PERF_RECORD_COMM = 3
  1917. pub aya_obj::generated::perf_event_type::PERF_RECORD_EXIT = 4
  1918. pub aya_obj::generated::perf_event_type::PERF_RECORD_FORK = 7
  1919. pub aya_obj::generated::perf_event_type::PERF_RECORD_ITRACE_START = 12
  1920. pub aya_obj::generated::perf_event_type::PERF_RECORD_KSYMBOL = 17
  1921. pub aya_obj::generated::perf_event_type::PERF_RECORD_LOST = 2
  1922. pub aya_obj::generated::perf_event_type::PERF_RECORD_LOST_SAMPLES = 13
  1923. pub aya_obj::generated::perf_event_type::PERF_RECORD_MAX = 22
  1924. pub aya_obj::generated::perf_event_type::PERF_RECORD_MMAP = 1
  1925. pub aya_obj::generated::perf_event_type::PERF_RECORD_MMAP2 = 10
  1926. pub aya_obj::generated::perf_event_type::PERF_RECORD_NAMESPACES = 16
  1927. pub aya_obj::generated::perf_event_type::PERF_RECORD_READ = 8
  1928. pub aya_obj::generated::perf_event_type::PERF_RECORD_SAMPLE = 9
  1929. pub aya_obj::generated::perf_event_type::PERF_RECORD_SWITCH = 14
  1930. pub aya_obj::generated::perf_event_type::PERF_RECORD_SWITCH_CPU_WIDE = 15
  1931. pub aya_obj::generated::perf_event_type::PERF_RECORD_TEXT_POKE = 20
  1932. pub aya_obj::generated::perf_event_type::PERF_RECORD_THROTTLE = 5
  1933. pub aya_obj::generated::perf_event_type::PERF_RECORD_UNTHROTTLE = 6
  1934. impl core::clone::Clone for aya_obj::generated::perf_event_type
  1935. pub fn aya_obj::generated::perf_event_type::clone(&self) -> aya_obj::generated::perf_event_type
  1936. impl core::cmp::Eq for aya_obj::generated::perf_event_type
  1937. impl core::cmp::PartialEq for aya_obj::generated::perf_event_type
  1938. pub fn aya_obj::generated::perf_event_type::eq(&self, other: &aya_obj::generated::perf_event_type) -> bool
  1939. impl core::fmt::Debug for aya_obj::generated::perf_event_type
  1940. pub fn aya_obj::generated::perf_event_type::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1941. impl core::hash::Hash for aya_obj::generated::perf_event_type
  1942. pub fn aya_obj::generated::perf_event_type::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1943. impl core::marker::Copy for aya_obj::generated::perf_event_type
  1944. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_event_type
  1945. impl core::marker::Freeze for aya_obj::generated::perf_event_type
  1946. impl core::marker::Send for aya_obj::generated::perf_event_type
  1947. impl core::marker::Sync for aya_obj::generated::perf_event_type
  1948. impl core::marker::Unpin for aya_obj::generated::perf_event_type
  1949. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_type
  1950. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_type
  1951. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_type where U: core::convert::From<T>
  1952. pub fn aya_obj::generated::perf_event_type::into(self) -> U
  1953. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_type where U: core::convert::Into<T>
  1954. pub type aya_obj::generated::perf_event_type::Error = core::convert::Infallible
  1955. pub fn aya_obj::generated::perf_event_type::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1956. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_type where U: core::convert::TryFrom<T>
  1957. pub type aya_obj::generated::perf_event_type::Error = <U as core::convert::TryFrom<T>>::Error
  1958. pub fn aya_obj::generated::perf_event_type::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1959. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_type where T: core::clone::Clone
  1960. pub type aya_obj::generated::perf_event_type::Owned = T
  1961. pub fn aya_obj::generated::perf_event_type::clone_into(&self, target: &mut T)
  1962. pub fn aya_obj::generated::perf_event_type::to_owned(&self) -> T
  1963. impl<T> core::any::Any for aya_obj::generated::perf_event_type where T: 'static + core::marker::Sized
  1964. pub fn aya_obj::generated::perf_event_type::type_id(&self) -> core::any::TypeId
  1965. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_type where T: core::marker::Sized
  1966. pub fn aya_obj::generated::perf_event_type::borrow(&self) -> &T
  1967. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_type where T: core::marker::Sized
  1968. pub fn aya_obj::generated::perf_event_type::borrow_mut(&mut self) -> &mut T
  1969. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_type where T: core::clone::Clone
  1970. pub unsafe fn aya_obj::generated::perf_event_type::clone_to_uninit(&self, dst: *mut T)
  1971. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_type where T: core::marker::Copy
  1972. pub unsafe fn aya_obj::generated::perf_event_type::clone_to_uninit(&self, dst: *mut T)
  1973. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_type
  1974. pub fn aya_obj::generated::perf_event_type::from(t: T) -> T
  1975. #[repr(u32)] pub enum aya_obj::generated::perf_hw_cache_id
  1976. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_BPU = 5
  1977. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_DTLB = 3
  1978. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_ITLB = 4
  1979. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_L1D = 0
  1980. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_L1I = 1
  1981. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_LL = 2
  1982. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_MAX = 7
  1983. pub aya_obj::generated::perf_hw_cache_id::PERF_COUNT_HW_CACHE_NODE = 6
  1984. impl core::clone::Clone for aya_obj::generated::perf_hw_cache_id
  1985. pub fn aya_obj::generated::perf_hw_cache_id::clone(&self) -> aya_obj::generated::perf_hw_cache_id
  1986. impl core::cmp::Eq for aya_obj::generated::perf_hw_cache_id
  1987. impl core::cmp::PartialEq for aya_obj::generated::perf_hw_cache_id
  1988. pub fn aya_obj::generated::perf_hw_cache_id::eq(&self, other: &aya_obj::generated::perf_hw_cache_id) -> bool
  1989. impl core::fmt::Debug for aya_obj::generated::perf_hw_cache_id
  1990. pub fn aya_obj::generated::perf_hw_cache_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1991. impl core::hash::Hash for aya_obj::generated::perf_hw_cache_id
  1992. pub fn aya_obj::generated::perf_hw_cache_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  1993. impl core::marker::Copy for aya_obj::generated::perf_hw_cache_id
  1994. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_cache_id
  1995. impl core::marker::Freeze for aya_obj::generated::perf_hw_cache_id
  1996. impl core::marker::Send for aya_obj::generated::perf_hw_cache_id
  1997. impl core::marker::Sync for aya_obj::generated::perf_hw_cache_id
  1998. impl core::marker::Unpin for aya_obj::generated::perf_hw_cache_id
  1999. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_cache_id
  2000. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_cache_id
  2001. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_hw_cache_id where U: core::convert::From<T>
  2002. pub fn aya_obj::generated::perf_hw_cache_id::into(self) -> U
  2003. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_hw_cache_id where U: core::convert::Into<T>
  2004. pub type aya_obj::generated::perf_hw_cache_id::Error = core::convert::Infallible
  2005. pub fn aya_obj::generated::perf_hw_cache_id::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2006. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_hw_cache_id where U: core::convert::TryFrom<T>
  2007. pub type aya_obj::generated::perf_hw_cache_id::Error = <U as core::convert::TryFrom<T>>::Error
  2008. pub fn aya_obj::generated::perf_hw_cache_id::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2009. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_hw_cache_id where T: core::clone::Clone
  2010. pub type aya_obj::generated::perf_hw_cache_id::Owned = T
  2011. pub fn aya_obj::generated::perf_hw_cache_id::clone_into(&self, target: &mut T)
  2012. pub fn aya_obj::generated::perf_hw_cache_id::to_owned(&self) -> T
  2013. impl<T> core::any::Any for aya_obj::generated::perf_hw_cache_id where T: 'static + core::marker::Sized
  2014. pub fn aya_obj::generated::perf_hw_cache_id::type_id(&self) -> core::any::TypeId
  2015. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_hw_cache_id where T: core::marker::Sized
  2016. pub fn aya_obj::generated::perf_hw_cache_id::borrow(&self) -> &T
  2017. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_hw_cache_id where T: core::marker::Sized
  2018. pub fn aya_obj::generated::perf_hw_cache_id::borrow_mut(&mut self) -> &mut T
  2019. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_cache_id where T: core::clone::Clone
  2020. pub unsafe fn aya_obj::generated::perf_hw_cache_id::clone_to_uninit(&self, dst: *mut T)
  2021. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_cache_id where T: core::marker::Copy
  2022. pub unsafe fn aya_obj::generated::perf_hw_cache_id::clone_to_uninit(&self, dst: *mut T)
  2023. impl<T> core::convert::From<T> for aya_obj::generated::perf_hw_cache_id
  2024. pub fn aya_obj::generated::perf_hw_cache_id::from(t: T) -> T
  2025. #[repr(u32)] pub enum aya_obj::generated::perf_hw_cache_op_id
  2026. pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_MAX = 3
  2027. pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_PREFETCH = 2
  2028. pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_READ = 0
  2029. pub aya_obj::generated::perf_hw_cache_op_id::PERF_COUNT_HW_CACHE_OP_WRITE = 1
  2030. impl core::clone::Clone for aya_obj::generated::perf_hw_cache_op_id
  2031. pub fn aya_obj::generated::perf_hw_cache_op_id::clone(&self) -> aya_obj::generated::perf_hw_cache_op_id
  2032. impl core::cmp::Eq for aya_obj::generated::perf_hw_cache_op_id
  2033. impl core::cmp::PartialEq for aya_obj::generated::perf_hw_cache_op_id
  2034. pub fn aya_obj::generated::perf_hw_cache_op_id::eq(&self, other: &aya_obj::generated::perf_hw_cache_op_id) -> bool
  2035. impl core::fmt::Debug for aya_obj::generated::perf_hw_cache_op_id
  2036. pub fn aya_obj::generated::perf_hw_cache_op_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2037. impl core::hash::Hash for aya_obj::generated::perf_hw_cache_op_id
  2038. pub fn aya_obj::generated::perf_hw_cache_op_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2039. impl core::marker::Copy for aya_obj::generated::perf_hw_cache_op_id
  2040. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_cache_op_id
  2041. impl core::marker::Freeze for aya_obj::generated::perf_hw_cache_op_id
  2042. impl core::marker::Send for aya_obj::generated::perf_hw_cache_op_id
  2043. impl core::marker::Sync for aya_obj::generated::perf_hw_cache_op_id
  2044. impl core::marker::Unpin for aya_obj::generated::perf_hw_cache_op_id
  2045. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_cache_op_id
  2046. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_cache_op_id
  2047. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_hw_cache_op_id where U: core::convert::From<T>
  2048. pub fn aya_obj::generated::perf_hw_cache_op_id::into(self) -> U
  2049. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_hw_cache_op_id where U: core::convert::Into<T>
  2050. pub type aya_obj::generated::perf_hw_cache_op_id::Error = core::convert::Infallible
  2051. pub fn aya_obj::generated::perf_hw_cache_op_id::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2052. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_hw_cache_op_id where U: core::convert::TryFrom<T>
  2053. pub type aya_obj::generated::perf_hw_cache_op_id::Error = <U as core::convert::TryFrom<T>>::Error
  2054. pub fn aya_obj::generated::perf_hw_cache_op_id::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2055. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_hw_cache_op_id where T: core::clone::Clone
  2056. pub type aya_obj::generated::perf_hw_cache_op_id::Owned = T
  2057. pub fn aya_obj::generated::perf_hw_cache_op_id::clone_into(&self, target: &mut T)
  2058. pub fn aya_obj::generated::perf_hw_cache_op_id::to_owned(&self) -> T
  2059. impl<T> core::any::Any for aya_obj::generated::perf_hw_cache_op_id where T: 'static + core::marker::Sized
  2060. pub fn aya_obj::generated::perf_hw_cache_op_id::type_id(&self) -> core::any::TypeId
  2061. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_hw_cache_op_id where T: core::marker::Sized
  2062. pub fn aya_obj::generated::perf_hw_cache_op_id::borrow(&self) -> &T
  2063. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_hw_cache_op_id where T: core::marker::Sized
  2064. pub fn aya_obj::generated::perf_hw_cache_op_id::borrow_mut(&mut self) -> &mut T
  2065. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_cache_op_id where T: core::clone::Clone
  2066. pub unsafe fn aya_obj::generated::perf_hw_cache_op_id::clone_to_uninit(&self, dst: *mut T)
  2067. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_cache_op_id where T: core::marker::Copy
  2068. pub unsafe fn aya_obj::generated::perf_hw_cache_op_id::clone_to_uninit(&self, dst: *mut T)
  2069. impl<T> core::convert::From<T> for aya_obj::generated::perf_hw_cache_op_id
  2070. pub fn aya_obj::generated::perf_hw_cache_op_id::from(t: T) -> T
  2071. #[repr(u32)] pub enum aya_obj::generated::perf_hw_cache_op_result_id
  2072. pub aya_obj::generated::perf_hw_cache_op_result_id::PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0
  2073. pub aya_obj::generated::perf_hw_cache_op_result_id::PERF_COUNT_HW_CACHE_RESULT_MAX = 2
  2074. pub aya_obj::generated::perf_hw_cache_op_result_id::PERF_COUNT_HW_CACHE_RESULT_MISS = 1
  2075. impl core::clone::Clone for aya_obj::generated::perf_hw_cache_op_result_id
  2076. pub fn aya_obj::generated::perf_hw_cache_op_result_id::clone(&self) -> aya_obj::generated::perf_hw_cache_op_result_id
  2077. impl core::cmp::Eq for aya_obj::generated::perf_hw_cache_op_result_id
  2078. impl core::cmp::PartialEq for aya_obj::generated::perf_hw_cache_op_result_id
  2079. pub fn aya_obj::generated::perf_hw_cache_op_result_id::eq(&self, other: &aya_obj::generated::perf_hw_cache_op_result_id) -> bool
  2080. impl core::fmt::Debug for aya_obj::generated::perf_hw_cache_op_result_id
  2081. pub fn aya_obj::generated::perf_hw_cache_op_result_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2082. impl core::hash::Hash for aya_obj::generated::perf_hw_cache_op_result_id
  2083. pub fn aya_obj::generated::perf_hw_cache_op_result_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2084. impl core::marker::Copy for aya_obj::generated::perf_hw_cache_op_result_id
  2085. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_cache_op_result_id
  2086. impl core::marker::Freeze for aya_obj::generated::perf_hw_cache_op_result_id
  2087. impl core::marker::Send for aya_obj::generated::perf_hw_cache_op_result_id
  2088. impl core::marker::Sync for aya_obj::generated::perf_hw_cache_op_result_id
  2089. impl core::marker::Unpin for aya_obj::generated::perf_hw_cache_op_result_id
  2090. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_cache_op_result_id
  2091. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_cache_op_result_id
  2092. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_hw_cache_op_result_id where U: core::convert::From<T>
  2093. pub fn aya_obj::generated::perf_hw_cache_op_result_id::into(self) -> U
  2094. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_hw_cache_op_result_id where U: core::convert::Into<T>
  2095. pub type aya_obj::generated::perf_hw_cache_op_result_id::Error = core::convert::Infallible
  2096. pub fn aya_obj::generated::perf_hw_cache_op_result_id::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2097. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_hw_cache_op_result_id where U: core::convert::TryFrom<T>
  2098. pub type aya_obj::generated::perf_hw_cache_op_result_id::Error = <U as core::convert::TryFrom<T>>::Error
  2099. pub fn aya_obj::generated::perf_hw_cache_op_result_id::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2100. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_hw_cache_op_result_id where T: core::clone::Clone
  2101. pub type aya_obj::generated::perf_hw_cache_op_result_id::Owned = T
  2102. pub fn aya_obj::generated::perf_hw_cache_op_result_id::clone_into(&self, target: &mut T)
  2103. pub fn aya_obj::generated::perf_hw_cache_op_result_id::to_owned(&self) -> T
  2104. impl<T> core::any::Any for aya_obj::generated::perf_hw_cache_op_result_id where T: 'static + core::marker::Sized
  2105. pub fn aya_obj::generated::perf_hw_cache_op_result_id::type_id(&self) -> core::any::TypeId
  2106. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_hw_cache_op_result_id where T: core::marker::Sized
  2107. pub fn aya_obj::generated::perf_hw_cache_op_result_id::borrow(&self) -> &T
  2108. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_hw_cache_op_result_id where T: core::marker::Sized
  2109. pub fn aya_obj::generated::perf_hw_cache_op_result_id::borrow_mut(&mut self) -> &mut T
  2110. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_cache_op_result_id where T: core::clone::Clone
  2111. pub unsafe fn aya_obj::generated::perf_hw_cache_op_result_id::clone_to_uninit(&self, dst: *mut T)
  2112. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_cache_op_result_id where T: core::marker::Copy
  2113. pub unsafe fn aya_obj::generated::perf_hw_cache_op_result_id::clone_to_uninit(&self, dst: *mut T)
  2114. impl<T> core::convert::From<T> for aya_obj::generated::perf_hw_cache_op_result_id
  2115. pub fn aya_obj::generated::perf_hw_cache_op_result_id::from(t: T) -> T
  2116. #[repr(u32)] pub enum aya_obj::generated::perf_hw_id
  2117. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4
  2118. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_BRANCH_MISSES = 5
  2119. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_BUS_CYCLES = 6
  2120. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_CACHE_MISSES = 3
  2121. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_CACHE_REFERENCES = 2
  2122. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_CPU_CYCLES = 0
  2123. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_INSTRUCTIONS = 1
  2124. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_MAX = 10
  2125. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_REF_CPU_CYCLES = 9
  2126. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8
  2127. pub aya_obj::generated::perf_hw_id::PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7
  2128. impl core::clone::Clone for aya_obj::generated::perf_hw_id
  2129. pub fn aya_obj::generated::perf_hw_id::clone(&self) -> aya_obj::generated::perf_hw_id
  2130. impl core::cmp::Eq for aya_obj::generated::perf_hw_id
  2131. impl core::cmp::PartialEq for aya_obj::generated::perf_hw_id
  2132. pub fn aya_obj::generated::perf_hw_id::eq(&self, other: &aya_obj::generated::perf_hw_id) -> bool
  2133. impl core::fmt::Debug for aya_obj::generated::perf_hw_id
  2134. pub fn aya_obj::generated::perf_hw_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2135. impl core::hash::Hash for aya_obj::generated::perf_hw_id
  2136. pub fn aya_obj::generated::perf_hw_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2137. impl core::marker::Copy for aya_obj::generated::perf_hw_id
  2138. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_hw_id
  2139. impl core::marker::Freeze for aya_obj::generated::perf_hw_id
  2140. impl core::marker::Send for aya_obj::generated::perf_hw_id
  2141. impl core::marker::Sync for aya_obj::generated::perf_hw_id
  2142. impl core::marker::Unpin for aya_obj::generated::perf_hw_id
  2143. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_hw_id
  2144. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_hw_id
  2145. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_hw_id where U: core::convert::From<T>
  2146. pub fn aya_obj::generated::perf_hw_id::into(self) -> U
  2147. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_hw_id where U: core::convert::Into<T>
  2148. pub type aya_obj::generated::perf_hw_id::Error = core::convert::Infallible
  2149. pub fn aya_obj::generated::perf_hw_id::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2150. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_hw_id where U: core::convert::TryFrom<T>
  2151. pub type aya_obj::generated::perf_hw_id::Error = <U as core::convert::TryFrom<T>>::Error
  2152. pub fn aya_obj::generated::perf_hw_id::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2153. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_hw_id where T: core::clone::Clone
  2154. pub type aya_obj::generated::perf_hw_id::Owned = T
  2155. pub fn aya_obj::generated::perf_hw_id::clone_into(&self, target: &mut T)
  2156. pub fn aya_obj::generated::perf_hw_id::to_owned(&self) -> T
  2157. impl<T> core::any::Any for aya_obj::generated::perf_hw_id where T: 'static + core::marker::Sized
  2158. pub fn aya_obj::generated::perf_hw_id::type_id(&self) -> core::any::TypeId
  2159. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_hw_id where T: core::marker::Sized
  2160. pub fn aya_obj::generated::perf_hw_id::borrow(&self) -> &T
  2161. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_hw_id where T: core::marker::Sized
  2162. pub fn aya_obj::generated::perf_hw_id::borrow_mut(&mut self) -> &mut T
  2163. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_id where T: core::clone::Clone
  2164. pub unsafe fn aya_obj::generated::perf_hw_id::clone_to_uninit(&self, dst: *mut T)
  2165. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_hw_id where T: core::marker::Copy
  2166. pub unsafe fn aya_obj::generated::perf_hw_id::clone_to_uninit(&self, dst: *mut T)
  2167. impl<T> core::convert::From<T> for aya_obj::generated::perf_hw_id
  2168. pub fn aya_obj::generated::perf_hw_id::from(t: T) -> T
  2169. #[repr(u32)] pub enum aya_obj::generated::perf_sw_ids
  2170. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_ALIGNMENT_FAULTS = 7
  2171. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_BPF_OUTPUT = 10
  2172. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CGROUP_SWITCHES = 11
  2173. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CONTEXT_SWITCHES = 3
  2174. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CPU_CLOCK = 0
  2175. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_CPU_MIGRATIONS = 4
  2176. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_DUMMY = 9
  2177. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_EMULATION_FAULTS = 8
  2178. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_MAX = 12
  2179. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_PAGE_FAULTS = 2
  2180. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6
  2181. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_PAGE_FAULTS_MIN = 5
  2182. pub aya_obj::generated::perf_sw_ids::PERF_COUNT_SW_TASK_CLOCK = 1
  2183. impl core::clone::Clone for aya_obj::generated::perf_sw_ids
  2184. pub fn aya_obj::generated::perf_sw_ids::clone(&self) -> aya_obj::generated::perf_sw_ids
  2185. impl core::cmp::Eq for aya_obj::generated::perf_sw_ids
  2186. impl core::cmp::PartialEq for aya_obj::generated::perf_sw_ids
  2187. pub fn aya_obj::generated::perf_sw_ids::eq(&self, other: &aya_obj::generated::perf_sw_ids) -> bool
  2188. impl core::fmt::Debug for aya_obj::generated::perf_sw_ids
  2189. pub fn aya_obj::generated::perf_sw_ids::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2190. impl core::hash::Hash for aya_obj::generated::perf_sw_ids
  2191. pub fn aya_obj::generated::perf_sw_ids::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2192. impl core::marker::Copy for aya_obj::generated::perf_sw_ids
  2193. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_sw_ids
  2194. impl core::marker::Freeze for aya_obj::generated::perf_sw_ids
  2195. impl core::marker::Send for aya_obj::generated::perf_sw_ids
  2196. impl core::marker::Sync for aya_obj::generated::perf_sw_ids
  2197. impl core::marker::Unpin for aya_obj::generated::perf_sw_ids
  2198. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_sw_ids
  2199. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_sw_ids
  2200. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_sw_ids where U: core::convert::From<T>
  2201. pub fn aya_obj::generated::perf_sw_ids::into(self) -> U
  2202. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_sw_ids where U: core::convert::Into<T>
  2203. pub type aya_obj::generated::perf_sw_ids::Error = core::convert::Infallible
  2204. pub fn aya_obj::generated::perf_sw_ids::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2205. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_sw_ids where U: core::convert::TryFrom<T>
  2206. pub type aya_obj::generated::perf_sw_ids::Error = <U as core::convert::TryFrom<T>>::Error
  2207. pub fn aya_obj::generated::perf_sw_ids::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2208. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_sw_ids where T: core::clone::Clone
  2209. pub type aya_obj::generated::perf_sw_ids::Owned = T
  2210. pub fn aya_obj::generated::perf_sw_ids::clone_into(&self, target: &mut T)
  2211. pub fn aya_obj::generated::perf_sw_ids::to_owned(&self) -> T
  2212. impl<T> core::any::Any for aya_obj::generated::perf_sw_ids where T: 'static + core::marker::Sized
  2213. pub fn aya_obj::generated::perf_sw_ids::type_id(&self) -> core::any::TypeId
  2214. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_sw_ids where T: core::marker::Sized
  2215. pub fn aya_obj::generated::perf_sw_ids::borrow(&self) -> &T
  2216. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_sw_ids where T: core::marker::Sized
  2217. pub fn aya_obj::generated::perf_sw_ids::borrow_mut(&mut self) -> &mut T
  2218. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_sw_ids where T: core::clone::Clone
  2219. pub unsafe fn aya_obj::generated::perf_sw_ids::clone_to_uninit(&self, dst: *mut T)
  2220. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_sw_ids where T: core::marker::Copy
  2221. pub unsafe fn aya_obj::generated::perf_sw_ids::clone_to_uninit(&self, dst: *mut T)
  2222. impl<T> core::convert::From<T> for aya_obj::generated::perf_sw_ids
  2223. pub fn aya_obj::generated::perf_sw_ids::from(t: T) -> T
  2224. #[repr(u32)] pub enum aya_obj::generated::perf_type_id
  2225. pub aya_obj::generated::perf_type_id::PERF_TYPE_BREAKPOINT = 5
  2226. pub aya_obj::generated::perf_type_id::PERF_TYPE_HARDWARE = 0
  2227. pub aya_obj::generated::perf_type_id::PERF_TYPE_HW_CACHE = 3
  2228. pub aya_obj::generated::perf_type_id::PERF_TYPE_MAX = 6
  2229. pub aya_obj::generated::perf_type_id::PERF_TYPE_RAW = 4
  2230. pub aya_obj::generated::perf_type_id::PERF_TYPE_SOFTWARE = 1
  2231. pub aya_obj::generated::perf_type_id::PERF_TYPE_TRACEPOINT = 2
  2232. impl core::clone::Clone for aya_obj::generated::perf_type_id
  2233. pub fn aya_obj::generated::perf_type_id::clone(&self) -> aya_obj::generated::perf_type_id
  2234. impl core::cmp::Eq for aya_obj::generated::perf_type_id
  2235. impl core::cmp::PartialEq for aya_obj::generated::perf_type_id
  2236. pub fn aya_obj::generated::perf_type_id::eq(&self, other: &aya_obj::generated::perf_type_id) -> bool
  2237. impl core::fmt::Debug for aya_obj::generated::perf_type_id
  2238. pub fn aya_obj::generated::perf_type_id::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2239. impl core::hash::Hash for aya_obj::generated::perf_type_id
  2240. pub fn aya_obj::generated::perf_type_id::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2241. impl core::marker::Copy for aya_obj::generated::perf_type_id
  2242. impl core::marker::StructuralPartialEq for aya_obj::generated::perf_type_id
  2243. impl core::marker::Freeze for aya_obj::generated::perf_type_id
  2244. impl core::marker::Send for aya_obj::generated::perf_type_id
  2245. impl core::marker::Sync for aya_obj::generated::perf_type_id
  2246. impl core::marker::Unpin for aya_obj::generated::perf_type_id
  2247. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_type_id
  2248. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_type_id
  2249. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_type_id where U: core::convert::From<T>
  2250. pub fn aya_obj::generated::perf_type_id::into(self) -> U
  2251. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_type_id where U: core::convert::Into<T>
  2252. pub type aya_obj::generated::perf_type_id::Error = core::convert::Infallible
  2253. pub fn aya_obj::generated::perf_type_id::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2254. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_type_id where U: core::convert::TryFrom<T>
  2255. pub type aya_obj::generated::perf_type_id::Error = <U as core::convert::TryFrom<T>>::Error
  2256. pub fn aya_obj::generated::perf_type_id::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2257. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_type_id where T: core::clone::Clone
  2258. pub type aya_obj::generated::perf_type_id::Owned = T
  2259. pub fn aya_obj::generated::perf_type_id::clone_into(&self, target: &mut T)
  2260. pub fn aya_obj::generated::perf_type_id::to_owned(&self) -> T
  2261. impl<T> core::any::Any for aya_obj::generated::perf_type_id where T: 'static + core::marker::Sized
  2262. pub fn aya_obj::generated::perf_type_id::type_id(&self) -> core::any::TypeId
  2263. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_type_id where T: core::marker::Sized
  2264. pub fn aya_obj::generated::perf_type_id::borrow(&self) -> &T
  2265. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_type_id where T: core::marker::Sized
  2266. pub fn aya_obj::generated::perf_type_id::borrow_mut(&mut self) -> &mut T
  2267. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_type_id where T: core::clone::Clone
  2268. pub unsafe fn aya_obj::generated::perf_type_id::clone_to_uninit(&self, dst: *mut T)
  2269. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_type_id where T: core::marker::Copy
  2270. pub unsafe fn aya_obj::generated::perf_type_id::clone_to_uninit(&self, dst: *mut T)
  2271. impl<T> core::convert::From<T> for aya_obj::generated::perf_type_id
  2272. pub fn aya_obj::generated::perf_type_id::from(t: T) -> T
  2273. #[repr(C)] pub union aya_obj::generated::bpf_attr
  2274. pub aya_obj::generated::bpf_attr::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_1
  2275. pub aya_obj::generated::bpf_attr::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_2
  2276. pub aya_obj::generated::bpf_attr::__bindgen_anon_3: aya_obj::generated::bpf_attr__bindgen_ty_4
  2277. pub aya_obj::generated::bpf_attr::__bindgen_anon_4: aya_obj::generated::bpf_attr__bindgen_ty_5
  2278. pub aya_obj::generated::bpf_attr::__bindgen_anon_5: aya_obj::generated::bpf_attr__bindgen_ty_6
  2279. pub aya_obj::generated::bpf_attr::__bindgen_anon_6: aya_obj::generated::bpf_attr__bindgen_ty_8
  2280. pub aya_obj::generated::bpf_attr::__bindgen_anon_7: aya_obj::generated::bpf_attr__bindgen_ty_12
  2281. pub aya_obj::generated::bpf_attr::batch: aya_obj::generated::bpf_attr__bindgen_ty_3
  2282. pub aya_obj::generated::bpf_attr::enable_stats: aya_obj::generated::bpf_attr__bindgen_ty_17
  2283. pub aya_obj::generated::bpf_attr::info: aya_obj::generated::bpf_attr__bindgen_ty_9
  2284. pub aya_obj::generated::bpf_attr::iter_create: aya_obj::generated::bpf_attr__bindgen_ty_18
  2285. pub aya_obj::generated::bpf_attr::link_create: aya_obj::generated::bpf_attr__bindgen_ty_14
  2286. pub aya_obj::generated::bpf_attr::link_detach: aya_obj::generated::bpf_attr__bindgen_ty_16
  2287. pub aya_obj::generated::bpf_attr::link_update: aya_obj::generated::bpf_attr__bindgen_ty_15
  2288. pub aya_obj::generated::bpf_attr::prog_bind_map: aya_obj::generated::bpf_attr__bindgen_ty_19
  2289. pub aya_obj::generated::bpf_attr::query: aya_obj::generated::bpf_attr__bindgen_ty_10
  2290. pub aya_obj::generated::bpf_attr::raw_tracepoint: aya_obj::generated::bpf_attr__bindgen_ty_11
  2291. pub aya_obj::generated::bpf_attr::task_fd_query: aya_obj::generated::bpf_attr__bindgen_ty_13
  2292. pub aya_obj::generated::bpf_attr::test: aya_obj::generated::bpf_attr__bindgen_ty_7
  2293. pub aya_obj::generated::bpf_attr::token_create: aya_obj::generated::bpf_attr__bindgen_ty_20
  2294. impl core::clone::Clone for aya_obj::generated::bpf_attr
  2295. pub fn aya_obj::generated::bpf_attr::clone(&self) -> aya_obj::generated::bpf_attr
  2296. impl core::marker::Copy for aya_obj::generated::bpf_attr
  2297. impl core::marker::Freeze for aya_obj::generated::bpf_attr
  2298. impl core::marker::Send for aya_obj::generated::bpf_attr
  2299. impl core::marker::Sync for aya_obj::generated::bpf_attr
  2300. impl core::marker::Unpin for aya_obj::generated::bpf_attr
  2301. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr
  2302. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr
  2303. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr where U: core::convert::From<T>
  2304. pub fn aya_obj::generated::bpf_attr::into(self) -> U
  2305. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr where U: core::convert::Into<T>
  2306. pub type aya_obj::generated::bpf_attr::Error = core::convert::Infallible
  2307. pub fn aya_obj::generated::bpf_attr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2308. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr where U: core::convert::TryFrom<T>
  2309. pub type aya_obj::generated::bpf_attr::Error = <U as core::convert::TryFrom<T>>::Error
  2310. pub fn aya_obj::generated::bpf_attr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2311. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr where T: core::clone::Clone
  2312. pub type aya_obj::generated::bpf_attr::Owned = T
  2313. pub fn aya_obj::generated::bpf_attr::clone_into(&self, target: &mut T)
  2314. pub fn aya_obj::generated::bpf_attr::to_owned(&self) -> T
  2315. impl<T> core::any::Any for aya_obj::generated::bpf_attr where T: 'static + core::marker::Sized
  2316. pub fn aya_obj::generated::bpf_attr::type_id(&self) -> core::any::TypeId
  2317. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr where T: core::marker::Sized
  2318. pub fn aya_obj::generated::bpf_attr::borrow(&self) -> &T
  2319. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr where T: core::marker::Sized
  2320. pub fn aya_obj::generated::bpf_attr::borrow_mut(&mut self) -> &mut T
  2321. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr where T: core::clone::Clone
  2322. pub unsafe fn aya_obj::generated::bpf_attr::clone_to_uninit(&self, dst: *mut T)
  2323. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr where T: core::marker::Copy
  2324. pub unsafe fn aya_obj::generated::bpf_attr::clone_to_uninit(&self, dst: *mut T)
  2325. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr
  2326. pub fn aya_obj::generated::bpf_attr::from(t: T) -> T
  2327. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2328. pub aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::target_fd: aya_obj::generated::__u32
  2329. pub aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::target_ifindex: aya_obj::generated::__u32
  2330. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2331. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2332. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2333. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2334. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2335. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2336. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2337. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2338. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2339. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where U: core::convert::From<T>
  2340. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::into(self) -> U
  2341. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where U: core::convert::Into<T>
  2342. pub type aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::Error = core::convert::Infallible
  2343. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2344. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2345. pub type aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2346. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2347. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where T: core::clone::Clone
  2348. pub type aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::Owned = T
  2349. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::clone_into(&self, target: &mut T)
  2350. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::to_owned(&self) -> T
  2351. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where T: 'static + core::marker::Sized
  2352. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2353. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where T: core::marker::Sized
  2354. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::borrow(&self) -> &T
  2355. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where T: core::marker::Sized
  2356. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2357. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where T: core::clone::Clone
  2358. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2359. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1 where T: core::marker::Copy
  2360. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2361. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  2362. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1::from(t: T) -> T
  2363. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2364. pub aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::count: aya_obj::generated::__u32
  2365. pub aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::prog_cnt: aya_obj::generated::__u32
  2366. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2367. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2368. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2369. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2370. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2371. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2372. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2373. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2374. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2375. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where U: core::convert::From<T>
  2376. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::into(self) -> U
  2377. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where U: core::convert::Into<T>
  2378. pub type aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::Error = core::convert::Infallible
  2379. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2380. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where U: core::convert::TryFrom<T>
  2381. pub type aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  2382. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2383. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where T: core::clone::Clone
  2384. pub type aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::Owned = T
  2385. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::clone_into(&self, target: &mut T)
  2386. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::to_owned(&self) -> T
  2387. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where T: 'static + core::marker::Sized
  2388. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  2389. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where T: core::marker::Sized
  2390. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::borrow(&self) -> &T
  2391. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where T: core::marker::Sized
  2392. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  2393. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where T: core::clone::Clone
  2394. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2395. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2 where T: core::marker::Copy
  2396. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2397. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  2398. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2::from(t: T) -> T
  2399. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2400. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::map_fd: aya_obj::generated::__u32
  2401. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::prog_fd: aya_obj::generated::__u32
  2402. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2403. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2404. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2405. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2406. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2407. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2408. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2409. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2410. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2411. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::From<T>
  2412. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::into(self) -> U
  2413. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::Into<T>
  2414. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::Error = core::convert::Infallible
  2415. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2416. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2417. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2418. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2419. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::clone::Clone
  2420. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::Owned = T
  2421. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::clone_into(&self, target: &mut T)
  2422. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::to_owned(&self) -> T
  2423. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: 'static + core::marker::Sized
  2424. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2425. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::marker::Sized
  2426. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::borrow(&self) -> &T
  2427. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::marker::Sized
  2428. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2429. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::clone::Clone
  2430. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2431. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1 where T: core::marker::Copy
  2432. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2433. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  2434. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1::from(t: T) -> T
  2435. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2436. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::target_fd: aya_obj::generated::__u32
  2437. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::target_ifindex: aya_obj::generated::__u32
  2438. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2439. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2440. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2441. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2442. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2443. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2444. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2445. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2446. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2447. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::From<T>
  2448. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::into(self) -> U
  2449. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::Into<T>
  2450. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::Error = core::convert::Infallible
  2451. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2452. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where U: core::convert::TryFrom<T>
  2453. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  2454. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2455. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::clone::Clone
  2456. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::Owned = T
  2457. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::clone_into(&self, target: &mut T)
  2458. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::to_owned(&self) -> T
  2459. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: 'static + core::marker::Sized
  2460. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  2461. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::marker::Sized
  2462. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::borrow(&self) -> &T
  2463. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::marker::Sized
  2464. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  2465. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::clone::Clone
  2466. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2467. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2 where T: core::marker::Copy
  2468. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2469. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  2470. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2::from(t: T) -> T
  2471. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2472. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  2473. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::kprobe_multi: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  2474. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::netfilter: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  2475. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::netkit: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  2476. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::perf_event: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  2477. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::target_btf_id: aya_obj::generated::__u32
  2478. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::tcx: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  2479. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::tracing: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  2480. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::uprobe_multi: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  2481. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2482. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2483. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2484. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2485. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2486. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2487. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2488. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2489. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2490. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::From<T>
  2491. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::into(self) -> U
  2492. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::Into<T>
  2493. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::Error = core::convert::Infallible
  2494. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2495. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where U: core::convert::TryFrom<T>
  2496. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::Error = <U as core::convert::TryFrom<T>>::Error
  2497. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2498. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::clone::Clone
  2499. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::Owned = T
  2500. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::clone_into(&self, target: &mut T)
  2501. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::to_owned(&self) -> T
  2502. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: 'static + core::marker::Sized
  2503. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::type_id(&self) -> core::any::TypeId
  2504. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::marker::Sized
  2505. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::borrow(&self) -> &T
  2506. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::marker::Sized
  2507. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::borrow_mut(&mut self) -> &mut T
  2508. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::clone::Clone
  2509. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  2510. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3 where T: core::marker::Copy
  2511. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  2512. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  2513. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3::from(t: T) -> T
  2514. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2515. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::relative_fd: aya_obj::generated::__u32
  2516. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::relative_id: aya_obj::generated::__u32
  2517. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2518. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2519. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2520. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2521. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2522. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2523. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2524. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2525. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2526. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where U: core::convert::From<T>
  2527. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::into(self) -> U
  2528. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where U: core::convert::Into<T>
  2529. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::Error = core::convert::Infallible
  2530. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2531. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2532. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2533. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2534. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where T: core::clone::Clone
  2535. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::Owned = T
  2536. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::clone_into(&self, target: &mut T)
  2537. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::to_owned(&self) -> T
  2538. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where T: 'static + core::marker::Sized
  2539. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2540. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where T: core::marker::Sized
  2541. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::borrow(&self) -> &T
  2542. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where T: core::marker::Sized
  2543. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2544. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where T: core::clone::Clone
  2545. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2546. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 where T: core::marker::Copy
  2547. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2548. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  2549. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1::from(t: T) -> T
  2550. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2551. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::relative_fd: aya_obj::generated::__u32
  2552. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::relative_id: aya_obj::generated::__u32
  2553. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2554. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2555. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2556. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2557. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2558. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2559. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2560. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2561. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2562. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where U: core::convert::From<T>
  2563. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::into(self) -> U
  2564. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where U: core::convert::Into<T>
  2565. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::Error = core::convert::Infallible
  2566. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2567. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2568. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2569. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2570. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where T: core::clone::Clone
  2571. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::Owned = T
  2572. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::clone_into(&self, target: &mut T)
  2573. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::to_owned(&self) -> T
  2574. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where T: 'static + core::marker::Sized
  2575. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2576. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized
  2577. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::borrow(&self) -> &T
  2578. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized
  2579. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2580. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where T: core::clone::Clone
  2581. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2582. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Copy
  2583. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2584. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  2585. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1::from(t: T) -> T
  2586. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2587. pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::new_map_fd: aya_obj::generated::__u32
  2588. pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::new_prog_fd: aya_obj::generated::__u32
  2589. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2590. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2591. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2592. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2593. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2594. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2595. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2596. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2597. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2598. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::From<T>
  2599. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::into(self) -> U
  2600. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::Into<T>
  2601. pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::Error = core::convert::Infallible
  2602. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2603. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2604. pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2605. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2606. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::clone::Clone
  2607. pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::Owned = T
  2608. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::clone_into(&self, target: &mut T)
  2609. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::to_owned(&self) -> T
  2610. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: 'static + core::marker::Sized
  2611. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2612. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::marker::Sized
  2613. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::borrow(&self) -> &T
  2614. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::marker::Sized
  2615. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2616. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::clone::Clone
  2617. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2618. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1 where T: core::marker::Copy
  2619. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2620. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  2621. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1::from(t: T) -> T
  2622. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2623. pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::old_map_fd: aya_obj::generated::__u32
  2624. pub aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::old_prog_fd: aya_obj::generated::__u32
  2625. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2626. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2627. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2628. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2629. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2630. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2631. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2632. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2633. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2634. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::From<T>
  2635. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::into(self) -> U
  2636. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::Into<T>
  2637. pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::Error = core::convert::Infallible
  2638. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2639. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where U: core::convert::TryFrom<T>
  2640. pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  2641. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2642. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::clone::Clone
  2643. pub type aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::Owned = T
  2644. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::clone_into(&self, target: &mut T)
  2645. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::to_owned(&self) -> T
  2646. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: 'static + core::marker::Sized
  2647. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  2648. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::marker::Sized
  2649. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::borrow(&self) -> &T
  2650. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::marker::Sized
  2651. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  2652. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::clone::Clone
  2653. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2654. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2 where T: core::marker::Copy
  2655. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2656. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  2657. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2::from(t: T) -> T
  2658. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2659. pub aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::next_key: aya_obj::generated::__u64
  2660. pub aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::value: aya_obj::generated::__u64
  2661. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2662. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2663. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2664. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2665. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2666. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2667. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2668. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2669. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2670. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::From<T>
  2671. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::into(self) -> U
  2672. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::Into<T>
  2673. pub type aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::Error = core::convert::Infallible
  2674. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2675. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2676. pub type aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2677. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2678. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::clone::Clone
  2679. pub type aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::Owned = T
  2680. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::clone_into(&self, target: &mut T)
  2681. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::to_owned(&self) -> T
  2682. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: 'static + core::marker::Sized
  2683. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2684. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized
  2685. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::borrow(&self) -> &T
  2686. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized
  2687. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2688. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::clone::Clone
  2689. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2690. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Copy
  2691. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2692. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  2693. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1::from(t: T) -> T
  2694. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2695. pub aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::attach_btf_obj_fd: aya_obj::generated::__u32
  2696. pub aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::attach_prog_fd: aya_obj::generated::__u32
  2697. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2698. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2699. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2700. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2701. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2702. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2703. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2704. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2705. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2706. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::From<T>
  2707. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::into(self) -> U
  2708. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::Into<T>
  2709. pub type aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::Error = core::convert::Infallible
  2710. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2711. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2712. pub type aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2713. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2714. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::clone::Clone
  2715. pub type aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::Owned = T
  2716. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::clone_into(&self, target: &mut T)
  2717. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::to_owned(&self) -> T
  2718. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: 'static + core::marker::Sized
  2719. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2720. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized
  2721. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::borrow(&self) -> &T
  2722. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized
  2723. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2724. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::clone::Clone
  2725. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2726. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Copy
  2727. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2728. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  2729. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1::from(t: T) -> T
  2730. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2731. pub aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::target_fd: aya_obj::generated::__u32
  2732. pub aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::target_ifindex: aya_obj::generated::__u32
  2733. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2734. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2735. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2736. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2737. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2738. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2739. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2740. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2741. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2742. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where U: core::convert::From<T>
  2743. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::into(self) -> U
  2744. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where U: core::convert::Into<T>
  2745. pub type aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::Error = core::convert::Infallible
  2746. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2747. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2748. pub type aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2749. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2750. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where T: core::clone::Clone
  2751. pub type aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::Owned = T
  2752. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::clone_into(&self, target: &mut T)
  2753. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::to_owned(&self) -> T
  2754. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where T: 'static + core::marker::Sized
  2755. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2756. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where T: core::marker::Sized
  2757. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::borrow(&self) -> &T
  2758. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where T: core::marker::Sized
  2759. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2760. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where T: core::clone::Clone
  2761. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2762. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1 where T: core::marker::Copy
  2763. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2764. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  2765. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1::from(t: T) -> T
  2766. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2767. pub aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::relative_fd: aya_obj::generated::__u32
  2768. pub aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::relative_id: aya_obj::generated::__u32
  2769. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2770. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2771. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2772. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2773. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2774. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2775. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2776. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2777. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2778. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where U: core::convert::From<T>
  2779. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::into(self) -> U
  2780. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where U: core::convert::Into<T>
  2781. pub type aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::Error = core::convert::Infallible
  2782. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2783. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where U: core::convert::TryFrom<T>
  2784. pub type aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  2785. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2786. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where T: core::clone::Clone
  2787. pub type aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::Owned = T
  2788. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::clone_into(&self, target: &mut T)
  2789. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::to_owned(&self) -> T
  2790. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where T: 'static + core::marker::Sized
  2791. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  2792. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where T: core::marker::Sized
  2793. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::borrow(&self) -> &T
  2794. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where T: core::marker::Sized
  2795. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  2796. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where T: core::clone::Clone
  2797. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2798. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2 where T: core::marker::Copy
  2799. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  2800. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  2801. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2::from(t: T) -> T
  2802. #[repr(C)] pub union aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2803. pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::btf_id: aya_obj::generated::__u32
  2804. pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::link_id: aya_obj::generated::__u32
  2805. pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::map_id: aya_obj::generated::__u32
  2806. pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::prog_id: aya_obj::generated::__u32
  2807. pub aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::start_id: aya_obj::generated::__u32
  2808. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2809. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2810. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2811. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2812. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2813. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2814. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2815. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2816. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2817. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::From<T>
  2818. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::into(self) -> U
  2819. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::Into<T>
  2820. pub type aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::Error = core::convert::Infallible
  2821. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2822. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2823. pub type aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2824. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2825. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::clone::Clone
  2826. pub type aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::Owned = T
  2827. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::clone_into(&self, target: &mut T)
  2828. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::to_owned(&self) -> T
  2829. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: 'static + core::marker::Sized
  2830. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2831. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized
  2832. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::borrow(&self) -> &T
  2833. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Sized
  2834. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2835. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::clone::Clone
  2836. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2837. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1 where T: core::marker::Copy
  2838. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2839. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  2840. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1::from(t: T) -> T
  2841. #[repr(C)] pub union aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2842. pub aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::fd: core::ffi::c_int
  2843. pub aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::id: aya_obj::generated::__u32
  2844. impl core::clone::Clone for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2845. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2846. impl core::marker::Copy for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2847. impl core::marker::Freeze for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2848. impl core::marker::Send for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2849. impl core::marker::Sync for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2850. impl core::marker::Unpin for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2851. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2852. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2853. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::From<T>
  2854. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::into(self) -> U
  2855. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::Into<T>
  2856. pub type aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::Error = core::convert::Infallible
  2857. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2858. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2859. pub type aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2860. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2861. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::clone::Clone
  2862. pub type aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::Owned = T
  2863. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::clone_into(&self, target: &mut T)
  2864. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::to_owned(&self) -> T
  2865. impl<T> core::any::Any for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: 'static + core::marker::Sized
  2866. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2867. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::marker::Sized
  2868. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::borrow(&self) -> &T
  2869. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::marker::Sized
  2870. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2871. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::clone::Clone
  2872. pub unsafe fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2873. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1 where T: core::marker::Copy
  2874. pub unsafe fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2875. impl<T> core::convert::From<T> for aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  2876. pub fn aya_obj::generated::bpf_cpumap_val__bindgen_ty_1::from(t: T) -> T
  2877. #[repr(C)] pub union aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2878. pub aya_obj::generated::bpf_devmap_val__bindgen_ty_1::fd: core::ffi::c_int
  2879. pub aya_obj::generated::bpf_devmap_val__bindgen_ty_1::id: aya_obj::generated::__u32
  2880. impl core::clone::Clone for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2881. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2882. impl core::marker::Copy for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2883. impl core::marker::Freeze for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2884. impl core::marker::Send for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2885. impl core::marker::Sync for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2886. impl core::marker::Unpin for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2887. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2888. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2889. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where U: core::convert::From<T>
  2890. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::into(self) -> U
  2891. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where U: core::convert::Into<T>
  2892. pub type aya_obj::generated::bpf_devmap_val__bindgen_ty_1::Error = core::convert::Infallible
  2893. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2894. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2895. pub type aya_obj::generated::bpf_devmap_val__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2896. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2897. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::clone::Clone
  2898. pub type aya_obj::generated::bpf_devmap_val__bindgen_ty_1::Owned = T
  2899. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::clone_into(&self, target: &mut T)
  2900. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::to_owned(&self) -> T
  2901. impl<T> core::any::Any for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: 'static + core::marker::Sized
  2902. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2903. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::marker::Sized
  2904. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::borrow(&self) -> &T
  2905. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::marker::Sized
  2906. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2907. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::clone::Clone
  2908. pub unsafe fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2909. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_devmap_val__bindgen_ty_1 where T: core::marker::Copy
  2910. pub unsafe fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2911. impl<T> core::convert::From<T> for aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  2912. pub fn aya_obj::generated::bpf_devmap_val__bindgen_ty_1::from(t: T) -> T
  2913. #[repr(C)] pub union aya_obj::generated::bpf_link_info__bindgen_ty_1
  2914. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::cgroup: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  2915. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::iter: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  2916. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::kprobe_multi: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  2917. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::netfilter: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  2918. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::netkit: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  2919. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::netns: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  2920. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::perf_event: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  2921. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::raw_tracepoint: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  2922. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::struct_ops: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  2923. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::tcx: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  2924. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::tracing: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  2925. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::uprobe_multi: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  2926. pub aya_obj::generated::bpf_link_info__bindgen_ty_1::xdp: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  2927. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2928. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1
  2929. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2930. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2931. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2932. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2933. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2934. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2935. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2936. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1 where U: core::convert::From<T>
  2937. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::into(self) -> U
  2938. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1 where U: core::convert::Into<T>
  2939. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1::Error = core::convert::Infallible
  2940. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2941. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2942. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2943. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2944. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::clone::Clone
  2945. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1::Owned = T
  2946. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::clone_into(&self, target: &mut T)
  2947. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::to_owned(&self) -> T
  2948. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: 'static + core::marker::Sized
  2949. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2950. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::marker::Sized
  2951. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::borrow(&self) -> &T
  2952. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::marker::Sized
  2953. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2954. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::clone::Clone
  2955. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2956. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1 where T: core::marker::Copy
  2957. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2958. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1
  2959. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1::from(t: T) -> T
  2960. #[repr(C)] pub union aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2961. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::event: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  2962. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::kprobe: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  2963. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::tracepoint: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  2964. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::uprobe: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  2965. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2966. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2967. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2968. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2969. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2970. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2971. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2972. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2973. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2974. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where U: core::convert::From<T>
  2975. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::into(self) -> U
  2976. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where U: core::convert::Into<T>
  2977. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::Error = core::convert::Infallible
  2978. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2979. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where U: core::convert::TryFrom<T>
  2980. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  2981. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2982. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where T: core::clone::Clone
  2983. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::Owned = T
  2984. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::clone_into(&self, target: &mut T)
  2985. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::to_owned(&self) -> T
  2986. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where T: 'static + core::marker::Sized
  2987. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  2988. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where T: core::marker::Sized
  2989. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::borrow(&self) -> &T
  2990. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where T: core::marker::Sized
  2991. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  2992. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where T: core::clone::Clone
  2993. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2994. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 where T: core::marker::Copy
  2995. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  2996. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  2997. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1::from(t: T) -> T
  2998. #[repr(C)] pub union aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  2999. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::map: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  3000. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3001. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3002. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3003. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3004. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3005. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3006. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3007. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3008. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3009. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::From<T>
  3010. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::into(self) -> U
  3011. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::Into<T>
  3012. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Error = core::convert::Infallible
  3013. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3014. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where U: core::convert::TryFrom<T>
  3015. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  3016. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3017. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::clone::Clone
  3018. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::Owned = T
  3019. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::clone_into(&self, target: &mut T)
  3020. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::to_owned(&self) -> T
  3021. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: 'static + core::marker::Sized
  3022. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  3023. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized
  3024. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::borrow(&self) -> &T
  3025. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Sized
  3026. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  3027. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::clone::Clone
  3028. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3029. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 where T: core::marker::Copy
  3030. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3031. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  3032. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1::from(t: T) -> T
  3033. #[repr(C)] pub union aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3034. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::cgroup: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  3035. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::task: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  3036. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3037. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3038. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3039. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3040. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3041. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3042. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3043. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3044. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3045. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::From<T>
  3046. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::into(self) -> U
  3047. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::Into<T>
  3048. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Error = core::convert::Infallible
  3049. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3050. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where U: core::convert::TryFrom<T>
  3051. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  3052. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3053. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::clone::Clone
  3054. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::Owned = T
  3055. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::clone_into(&self, target: &mut T)
  3056. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::to_owned(&self) -> T
  3057. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: 'static + core::marker::Sized
  3058. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  3059. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::marker::Sized
  3060. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::borrow(&self) -> &T
  3061. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::marker::Sized
  3062. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  3063. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::clone::Clone
  3064. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  3065. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 where T: core::marker::Copy
  3066. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  3067. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  3068. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2::from(t: T) -> T
  3069. #[repr(C)] pub union aya_obj::generated::btf_type__bindgen_ty_1
  3070. pub aya_obj::generated::btf_type__bindgen_ty_1::size: aya_obj::generated::__u32
  3071. pub aya_obj::generated::btf_type__bindgen_ty_1::type_: aya_obj::generated::__u32
  3072. impl core::clone::Clone for aya_obj::generated::btf_type__bindgen_ty_1
  3073. pub fn aya_obj::generated::btf_type__bindgen_ty_1::clone(&self) -> aya_obj::generated::btf_type__bindgen_ty_1
  3074. impl core::marker::Copy for aya_obj::generated::btf_type__bindgen_ty_1
  3075. impl core::marker::Freeze for aya_obj::generated::btf_type__bindgen_ty_1
  3076. impl core::marker::Send for aya_obj::generated::btf_type__bindgen_ty_1
  3077. impl core::marker::Sync for aya_obj::generated::btf_type__bindgen_ty_1
  3078. impl core::marker::Unpin for aya_obj::generated::btf_type__bindgen_ty_1
  3079. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_type__bindgen_ty_1
  3080. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_type__bindgen_ty_1
  3081. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_type__bindgen_ty_1 where U: core::convert::From<T>
  3082. pub fn aya_obj::generated::btf_type__bindgen_ty_1::into(self) -> U
  3083. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_type__bindgen_ty_1 where U: core::convert::Into<T>
  3084. pub type aya_obj::generated::btf_type__bindgen_ty_1::Error = core::convert::Infallible
  3085. pub fn aya_obj::generated::btf_type__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3086. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_type__bindgen_ty_1 where U: core::convert::TryFrom<T>
  3087. pub type aya_obj::generated::btf_type__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  3088. pub fn aya_obj::generated::btf_type__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3089. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::clone::Clone
  3090. pub type aya_obj::generated::btf_type__bindgen_ty_1::Owned = T
  3091. pub fn aya_obj::generated::btf_type__bindgen_ty_1::clone_into(&self, target: &mut T)
  3092. pub fn aya_obj::generated::btf_type__bindgen_ty_1::to_owned(&self) -> T
  3093. impl<T> core::any::Any for aya_obj::generated::btf_type__bindgen_ty_1 where T: 'static + core::marker::Sized
  3094. pub fn aya_obj::generated::btf_type__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  3095. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::marker::Sized
  3096. pub fn aya_obj::generated::btf_type__bindgen_ty_1::borrow(&self) -> &T
  3097. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::marker::Sized
  3098. pub fn aya_obj::generated::btf_type__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  3099. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::clone::Clone
  3100. pub unsafe fn aya_obj::generated::btf_type__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3101. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_type__bindgen_ty_1 where T: core::marker::Copy
  3102. pub unsafe fn aya_obj::generated::btf_type__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3103. impl<T> core::convert::From<T> for aya_obj::generated::btf_type__bindgen_ty_1
  3104. pub fn aya_obj::generated::btf_type__bindgen_ty_1::from(t: T) -> T
  3105. #[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_1
  3106. pub aya_obj::generated::perf_event_attr__bindgen_ty_1::sample_freq: aya_obj::generated::__u64
  3107. pub aya_obj::generated::perf_event_attr__bindgen_ty_1::sample_period: aya_obj::generated::__u64
  3108. impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3109. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_1
  3110. impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3111. impl core::marker::Freeze for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3112. impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3113. impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3114. impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3115. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3116. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3117. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_attr__bindgen_ty_1 where U: core::convert::From<T>
  3118. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::into(self) -> U
  3119. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_attr__bindgen_ty_1 where U: core::convert::Into<T>
  3120. pub type aya_obj::generated::perf_event_attr__bindgen_ty_1::Error = core::convert::Infallible
  3121. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3122. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_attr__bindgen_ty_1 where U: core::convert::TryFrom<T>
  3123. pub type aya_obj::generated::perf_event_attr__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  3124. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3125. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::clone::Clone
  3126. pub type aya_obj::generated::perf_event_attr__bindgen_ty_1::Owned = T
  3127. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::clone_into(&self, target: &mut T)
  3128. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::to_owned(&self) -> T
  3129. impl<T> core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: 'static + core::marker::Sized
  3130. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  3131. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::marker::Sized
  3132. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::borrow(&self) -> &T
  3133. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::marker::Sized
  3134. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  3135. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::clone::Clone
  3136. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3137. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_1 where T: core::marker::Copy
  3138. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3139. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_attr__bindgen_ty_1
  3140. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_1::from(t: T) -> T
  3141. #[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_2
  3142. pub aya_obj::generated::perf_event_attr__bindgen_ty_2::wakeup_events: aya_obj::generated::__u32
  3143. pub aya_obj::generated::perf_event_attr__bindgen_ty_2::wakeup_watermark: aya_obj::generated::__u32
  3144. impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3145. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_2
  3146. impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3147. impl core::marker::Freeze for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3148. impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3149. impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3150. impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3151. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3152. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3153. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_attr__bindgen_ty_2 where U: core::convert::From<T>
  3154. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::into(self) -> U
  3155. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_attr__bindgen_ty_2 where U: core::convert::Into<T>
  3156. pub type aya_obj::generated::perf_event_attr__bindgen_ty_2::Error = core::convert::Infallible
  3157. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3158. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_attr__bindgen_ty_2 where U: core::convert::TryFrom<T>
  3159. pub type aya_obj::generated::perf_event_attr__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  3160. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3161. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::clone::Clone
  3162. pub type aya_obj::generated::perf_event_attr__bindgen_ty_2::Owned = T
  3163. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::clone_into(&self, target: &mut T)
  3164. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::to_owned(&self) -> T
  3165. impl<T> core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: 'static + core::marker::Sized
  3166. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  3167. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::marker::Sized
  3168. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::borrow(&self) -> &T
  3169. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::marker::Sized
  3170. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  3171. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::clone::Clone
  3172. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  3173. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_2 where T: core::marker::Copy
  3174. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  3175. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_attr__bindgen_ty_2
  3176. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_2::from(t: T) -> T
  3177. #[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_3
  3178. pub aya_obj::generated::perf_event_attr__bindgen_ty_3::bp_addr: aya_obj::generated::__u64
  3179. pub aya_obj::generated::perf_event_attr__bindgen_ty_3::config1: aya_obj::generated::__u64
  3180. pub aya_obj::generated::perf_event_attr__bindgen_ty_3::kprobe_func: aya_obj::generated::__u64
  3181. pub aya_obj::generated::perf_event_attr__bindgen_ty_3::uprobe_path: aya_obj::generated::__u64
  3182. impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3183. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_3
  3184. impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3185. impl core::marker::Freeze for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3186. impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3187. impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3188. impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3189. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3190. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3191. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_attr__bindgen_ty_3 where U: core::convert::From<T>
  3192. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::into(self) -> U
  3193. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_attr__bindgen_ty_3 where U: core::convert::Into<T>
  3194. pub type aya_obj::generated::perf_event_attr__bindgen_ty_3::Error = core::convert::Infallible
  3195. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3196. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_attr__bindgen_ty_3 where U: core::convert::TryFrom<T>
  3197. pub type aya_obj::generated::perf_event_attr__bindgen_ty_3::Error = <U as core::convert::TryFrom<T>>::Error
  3198. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3199. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::clone::Clone
  3200. pub type aya_obj::generated::perf_event_attr__bindgen_ty_3::Owned = T
  3201. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::clone_into(&self, target: &mut T)
  3202. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::to_owned(&self) -> T
  3203. impl<T> core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: 'static + core::marker::Sized
  3204. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::type_id(&self) -> core::any::TypeId
  3205. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::marker::Sized
  3206. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::borrow(&self) -> &T
  3207. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::marker::Sized
  3208. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::borrow_mut(&mut self) -> &mut T
  3209. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::clone::Clone
  3210. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  3211. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_3 where T: core::marker::Copy
  3212. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  3213. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_attr__bindgen_ty_3
  3214. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_3::from(t: T) -> T
  3215. #[repr(C)] pub union aya_obj::generated::perf_event_attr__bindgen_ty_4
  3216. pub aya_obj::generated::perf_event_attr__bindgen_ty_4::bp_len: aya_obj::generated::__u64
  3217. pub aya_obj::generated::perf_event_attr__bindgen_ty_4::config2: aya_obj::generated::__u64
  3218. pub aya_obj::generated::perf_event_attr__bindgen_ty_4::kprobe_addr: aya_obj::generated::__u64
  3219. pub aya_obj::generated::perf_event_attr__bindgen_ty_4::probe_offset: aya_obj::generated::__u64
  3220. impl core::clone::Clone for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3221. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::clone(&self) -> aya_obj::generated::perf_event_attr__bindgen_ty_4
  3222. impl core::marker::Copy for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3223. impl core::marker::Freeze for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3224. impl core::marker::Send for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3225. impl core::marker::Sync for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3226. impl core::marker::Unpin for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3227. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3228. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3229. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_attr__bindgen_ty_4 where U: core::convert::From<T>
  3230. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::into(self) -> U
  3231. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_attr__bindgen_ty_4 where U: core::convert::Into<T>
  3232. pub type aya_obj::generated::perf_event_attr__bindgen_ty_4::Error = core::convert::Infallible
  3233. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3234. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_attr__bindgen_ty_4 where U: core::convert::TryFrom<T>
  3235. pub type aya_obj::generated::perf_event_attr__bindgen_ty_4::Error = <U as core::convert::TryFrom<T>>::Error
  3236. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3237. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::clone::Clone
  3238. pub type aya_obj::generated::perf_event_attr__bindgen_ty_4::Owned = T
  3239. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::clone_into(&self, target: &mut T)
  3240. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::to_owned(&self) -> T
  3241. impl<T> core::any::Any for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: 'static + core::marker::Sized
  3242. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::type_id(&self) -> core::any::TypeId
  3243. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::marker::Sized
  3244. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::borrow(&self) -> &T
  3245. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::marker::Sized
  3246. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::borrow_mut(&mut self) -> &mut T
  3247. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::clone::Clone
  3248. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  3249. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr__bindgen_ty_4 where T: core::marker::Copy
  3250. pub unsafe fn aya_obj::generated::perf_event_attr__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  3251. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_attr__bindgen_ty_4
  3252. pub fn aya_obj::generated::perf_event_attr__bindgen_ty_4::from(t: T) -> T
  3253. #[repr(C)] pub union aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3254. pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::__bindgen_anon_1: aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  3255. pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::capabilities: aya_obj::generated::__u64
  3256. impl core::clone::Clone for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3257. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::clone(&self) -> aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3258. impl core::marker::Copy for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3259. impl core::marker::Freeze for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3260. impl core::marker::Send for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3261. impl core::marker::Sync for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3262. impl core::marker::Unpin for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3263. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3264. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3265. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where U: core::convert::From<T>
  3266. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::into(self) -> U
  3267. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where U: core::convert::Into<T>
  3268. pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::Error = core::convert::Infallible
  3269. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3270. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where U: core::convert::TryFrom<T>
  3271. pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  3272. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3273. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::clone::Clone
  3274. pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::Owned = T
  3275. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::clone_into(&self, target: &mut T)
  3276. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::to_owned(&self) -> T
  3277. impl<T> core::any::Any for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: 'static + core::marker::Sized
  3278. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  3279. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::marker::Sized
  3280. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::borrow(&self) -> &T
  3281. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::marker::Sized
  3282. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  3283. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::clone::Clone
  3284. pub unsafe fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3285. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1 where T: core::marker::Copy
  3286. pub unsafe fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3287. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  3288. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1::from(t: T) -> T
  3289. #[repr(C)] pub struct aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3290. impl<Storage> aya_obj::generated::__BindgenBitfieldUnit<Storage> where Storage: core::convert::AsRef<[u8]> + core::convert::AsMut<[u8]>
  3291. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::get(&self, bit_offset: usize, bit_width: u8) -> u64
  3292. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::get_bit(&self, index: usize) -> bool
  3293. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::set(&mut self, bit_offset: usize, bit_width: u8, val: u64)
  3294. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::set_bit(&mut self, index: usize, val: bool)
  3295. impl<Storage> aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3296. pub const fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::new(storage: Storage) -> Self
  3297. impl<Storage: core::clone::Clone> core::clone::Clone for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3298. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::clone(&self) -> aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3299. impl<Storage: core::cmp::Eq> core::cmp::Eq for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3300. impl<Storage: core::cmp::Ord> core::cmp::Ord for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3301. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::cmp(&self, other: &aya_obj::generated::__BindgenBitfieldUnit<Storage>) -> core::cmp::Ordering
  3302. impl<Storage: core::cmp::PartialEq> core::cmp::PartialEq for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3303. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::eq(&self, other: &aya_obj::generated::__BindgenBitfieldUnit<Storage>) -> bool
  3304. impl<Storage: core::cmp::PartialOrd> core::cmp::PartialOrd for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3305. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::partial_cmp(&self, other: &aya_obj::generated::__BindgenBitfieldUnit<Storage>) -> core::option::Option<core::cmp::Ordering>
  3306. impl<Storage: core::default::Default> core::default::Default for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3307. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::default() -> aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3308. impl<Storage: core::fmt::Debug> core::fmt::Debug for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3309. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3310. impl<Storage: core::hash::Hash> core::hash::Hash for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3311. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3312. impl<Storage: core::marker::Copy> core::marker::Copy for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3313. impl<Storage> core::marker::StructuralPartialEq for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3314. impl<Storage> core::marker::Freeze for aya_obj::generated::__BindgenBitfieldUnit<Storage> where Storage: core::marker::Freeze
  3315. impl<Storage> core::marker::Send for aya_obj::generated::__BindgenBitfieldUnit<Storage> where Storage: core::marker::Send
  3316. impl<Storage> core::marker::Sync for aya_obj::generated::__BindgenBitfieldUnit<Storage> where Storage: core::marker::Sync
  3317. impl<Storage> core::marker::Unpin for aya_obj::generated::__BindgenBitfieldUnit<Storage> where Storage: core::marker::Unpin
  3318. impl<Storage> core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::__BindgenBitfieldUnit<Storage> where Storage: core::panic::unwind_safe::RefUnwindSafe
  3319. impl<Storage> core::panic::unwind_safe::UnwindSafe for aya_obj::generated::__BindgenBitfieldUnit<Storage> where Storage: core::panic::unwind_safe::UnwindSafe
  3320. impl<T, U> core::convert::Into<U> for aya_obj::generated::__BindgenBitfieldUnit<Storage> where U: core::convert::From<T>
  3321. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::into(self) -> U
  3322. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::__BindgenBitfieldUnit<Storage> where U: core::convert::Into<T>
  3323. pub type aya_obj::generated::__BindgenBitfieldUnit<Storage>::Error = core::convert::Infallible
  3324. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3325. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::__BindgenBitfieldUnit<Storage> where U: core::convert::TryFrom<T>
  3326. pub type aya_obj::generated::__BindgenBitfieldUnit<Storage>::Error = <U as core::convert::TryFrom<T>>::Error
  3327. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3328. impl<T> alloc::borrow::ToOwned for aya_obj::generated::__BindgenBitfieldUnit<Storage> where T: core::clone::Clone
  3329. pub type aya_obj::generated::__BindgenBitfieldUnit<Storage>::Owned = T
  3330. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::clone_into(&self, target: &mut T)
  3331. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::to_owned(&self) -> T
  3332. impl<T> core::any::Any for aya_obj::generated::__BindgenBitfieldUnit<Storage> where T: 'static + core::marker::Sized
  3333. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::type_id(&self) -> core::any::TypeId
  3334. impl<T> core::borrow::Borrow<T> for aya_obj::generated::__BindgenBitfieldUnit<Storage> where T: core::marker::Sized
  3335. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::borrow(&self) -> &T
  3336. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::__BindgenBitfieldUnit<Storage> where T: core::marker::Sized
  3337. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::borrow_mut(&mut self) -> &mut T
  3338. impl<T> core::clone::CloneToUninit for aya_obj::generated::__BindgenBitfieldUnit<Storage> where T: core::clone::Clone
  3339. pub unsafe fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::clone_to_uninit(&self, dst: *mut T)
  3340. impl<T> core::clone::CloneToUninit for aya_obj::generated::__BindgenBitfieldUnit<Storage> where T: core::marker::Copy
  3341. pub unsafe fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::clone_to_uninit(&self, dst: *mut T)
  3342. impl<T> core::convert::From<T> for aya_obj::generated::__BindgenBitfieldUnit<Storage>
  3343. pub fn aya_obj::generated::__BindgenBitfieldUnit<Storage>::from(t: T) -> T
  3344. #[repr(C)] pub struct aya_obj::generated::__IncompleteArrayField<T>(_, _)
  3345. impl<T> aya_obj::generated::__IncompleteArrayField<T>
  3346. pub fn aya_obj::generated::__IncompleteArrayField<T>::as_mut_ptr(&mut self) -> *mut T
  3347. pub unsafe fn aya_obj::generated::__IncompleteArrayField<T>::as_mut_slice(&mut self, len: usize) -> &mut [T]
  3348. pub fn aya_obj::generated::__IncompleteArrayField<T>::as_ptr(&self) -> *const T
  3349. pub unsafe fn aya_obj::generated::__IncompleteArrayField<T>::as_slice(&self, len: usize) -> &[T]
  3350. pub const fn aya_obj::generated::__IncompleteArrayField<T>::new() -> Self
  3351. impl<T: core::default::Default> core::default::Default for aya_obj::generated::__IncompleteArrayField<T>
  3352. pub fn aya_obj::generated::__IncompleteArrayField<T>::default() -> aya_obj::generated::__IncompleteArrayField<T>
  3353. impl<T> core::fmt::Debug for aya_obj::generated::__IncompleteArrayField<T>
  3354. pub fn aya_obj::generated::__IncompleteArrayField<T>::fmt(&self, fmt: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3355. impl<T> core::marker::Freeze for aya_obj::generated::__IncompleteArrayField<T> where T: core::marker::Freeze
  3356. impl<T> core::marker::Send for aya_obj::generated::__IncompleteArrayField<T> where T: core::marker::Send
  3357. impl<T> core::marker::Sync for aya_obj::generated::__IncompleteArrayField<T> where T: core::marker::Sync
  3358. impl<T> core::marker::Unpin for aya_obj::generated::__IncompleteArrayField<T> where T: core::marker::Unpin
  3359. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::__IncompleteArrayField<T> where T: core::panic::unwind_safe::RefUnwindSafe
  3360. impl<T> core::panic::unwind_safe::UnwindSafe for aya_obj::generated::__IncompleteArrayField<T> where T: core::panic::unwind_safe::UnwindSafe
  3361. impl<T, U> core::convert::Into<U> for aya_obj::generated::__IncompleteArrayField<T> where U: core::convert::From<T>
  3362. pub fn aya_obj::generated::__IncompleteArrayField<T>::into(self) -> U
  3363. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::__IncompleteArrayField<T> where U: core::convert::Into<T>
  3364. pub type aya_obj::generated::__IncompleteArrayField<T>::Error = core::convert::Infallible
  3365. pub fn aya_obj::generated::__IncompleteArrayField<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3366. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::__IncompleteArrayField<T> where U: core::convert::TryFrom<T>
  3367. pub type aya_obj::generated::__IncompleteArrayField<T>::Error = <U as core::convert::TryFrom<T>>::Error
  3368. pub fn aya_obj::generated::__IncompleteArrayField<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3369. impl<T> core::any::Any for aya_obj::generated::__IncompleteArrayField<T> where T: 'static + core::marker::Sized
  3370. pub fn aya_obj::generated::__IncompleteArrayField<T>::type_id(&self) -> core::any::TypeId
  3371. impl<T> core::borrow::Borrow<T> for aya_obj::generated::__IncompleteArrayField<T> where T: core::marker::Sized
  3372. pub fn aya_obj::generated::__IncompleteArrayField<T>::borrow(&self) -> &T
  3373. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::__IncompleteArrayField<T> where T: core::marker::Sized
  3374. pub fn aya_obj::generated::__IncompleteArrayField<T>::borrow_mut(&mut self) -> &mut T
  3375. impl<T> core::convert::From<T> for aya_obj::generated::__IncompleteArrayField<T>
  3376. pub fn aya_obj::generated::__IncompleteArrayField<T>::from(t: T) -> T
  3377. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_1
  3378. pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_fd: aya_obj::generated::__u32
  3379. pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_key_type_id: aya_obj::generated::__u32
  3380. pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_value_type_id: aya_obj::generated::__u32
  3381. pub aya_obj::generated::bpf_attr__bindgen_ty_1::btf_vmlinux_value_type_id: aya_obj::generated::__u32
  3382. pub aya_obj::generated::bpf_attr__bindgen_ty_1::inner_map_fd: aya_obj::generated::__u32
  3383. pub aya_obj::generated::bpf_attr__bindgen_ty_1::key_size: aya_obj::generated::__u32
  3384. pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_extra: aya_obj::generated::__u64
  3385. pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_flags: aya_obj::generated::__u32
  3386. pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_ifindex: aya_obj::generated::__u32
  3387. pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_name: [core::ffi::c_char; 16]
  3388. pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_token_fd: aya_obj::generated::__s32
  3389. pub aya_obj::generated::bpf_attr__bindgen_ty_1::map_type: aya_obj::generated::__u32
  3390. pub aya_obj::generated::bpf_attr__bindgen_ty_1::max_entries: aya_obj::generated::__u32
  3391. pub aya_obj::generated::bpf_attr__bindgen_ty_1::numa_node: aya_obj::generated::__u32
  3392. pub aya_obj::generated::bpf_attr__bindgen_ty_1::value_size: aya_obj::generated::__u32
  3393. pub aya_obj::generated::bpf_attr__bindgen_ty_1::value_type_btf_obj_fd: aya_obj::generated::__s32
  3394. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_1
  3395. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_1
  3396. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_1
  3397. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3398. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_1
  3399. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_1
  3400. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_1
  3401. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_1
  3402. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_1
  3403. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_1
  3404. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_1
  3405. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_1 where U: core::convert::From<T>
  3406. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::into(self) -> U
  3407. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_1 where U: core::convert::Into<T>
  3408. pub type aya_obj::generated::bpf_attr__bindgen_ty_1::Error = core::convert::Infallible
  3409. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3410. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_1 where U: core::convert::TryFrom<T>
  3411. pub type aya_obj::generated::bpf_attr__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  3412. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3413. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::clone::Clone
  3414. pub type aya_obj::generated::bpf_attr__bindgen_ty_1::Owned = T
  3415. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::clone_into(&self, target: &mut T)
  3416. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::to_owned(&self) -> T
  3417. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: 'static + core::marker::Sized
  3418. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  3419. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::marker::Sized
  3420. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::borrow(&self) -> &T
  3421. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::marker::Sized
  3422. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  3423. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::clone::Clone
  3424. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3425. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_1 where T: core::marker::Copy
  3426. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3427. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_1
  3428. pub fn aya_obj::generated::bpf_attr__bindgen_ty_1::from(t: T) -> T
  3429. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_10
  3430. pub aya_obj::generated::bpf_attr__bindgen_ty_10::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_1
  3431. pub aya_obj::generated::bpf_attr__bindgen_ty_10::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_10__bindgen_ty_2
  3432. pub aya_obj::generated::bpf_attr__bindgen_ty_10::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  3433. pub aya_obj::generated::bpf_attr__bindgen_ty_10::_bitfield_align_1: [u8; 0]
  3434. pub aya_obj::generated::bpf_attr__bindgen_ty_10::attach_flags: aya_obj::generated::__u32
  3435. pub aya_obj::generated::bpf_attr__bindgen_ty_10::attach_type: aya_obj::generated::__u32
  3436. pub aya_obj::generated::bpf_attr__bindgen_ty_10::link_attach_flags: aya_obj::generated::__u64
  3437. pub aya_obj::generated::bpf_attr__bindgen_ty_10::link_ids: aya_obj::generated::__u64
  3438. pub aya_obj::generated::bpf_attr__bindgen_ty_10::prog_attach_flags: aya_obj::generated::__u64
  3439. pub aya_obj::generated::bpf_attr__bindgen_ty_10::prog_ids: aya_obj::generated::__u64
  3440. pub aya_obj::generated::bpf_attr__bindgen_ty_10::query_flags: aya_obj::generated::__u32
  3441. pub aya_obj::generated::bpf_attr__bindgen_ty_10::revision: aya_obj::generated::__u64
  3442. impl aya_obj::generated::bpf_attr__bindgen_ty_10
  3443. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::new_bitfield_1() -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  3444. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_10
  3445. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_10
  3446. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_10
  3447. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_10
  3448. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_10
  3449. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_10
  3450. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_10
  3451. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10
  3452. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_10
  3453. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_10 where U: core::convert::From<T>
  3454. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::into(self) -> U
  3455. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_10 where U: core::convert::Into<T>
  3456. pub type aya_obj::generated::bpf_attr__bindgen_ty_10::Error = core::convert::Infallible
  3457. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3458. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_10 where U: core::convert::TryFrom<T>
  3459. pub type aya_obj::generated::bpf_attr__bindgen_ty_10::Error = <U as core::convert::TryFrom<T>>::Error
  3460. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3461. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::clone::Clone
  3462. pub type aya_obj::generated::bpf_attr__bindgen_ty_10::Owned = T
  3463. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::clone_into(&self, target: &mut T)
  3464. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::to_owned(&self) -> T
  3465. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: 'static + core::marker::Sized
  3466. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::type_id(&self) -> core::any::TypeId
  3467. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::marker::Sized
  3468. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::borrow(&self) -> &T
  3469. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::marker::Sized
  3470. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::borrow_mut(&mut self) -> &mut T
  3471. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::clone::Clone
  3472. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_10::clone_to_uninit(&self, dst: *mut T)
  3473. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_10 where T: core::marker::Copy
  3474. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_10::clone_to_uninit(&self, dst: *mut T)
  3475. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_10
  3476. pub fn aya_obj::generated::bpf_attr__bindgen_ty_10::from(t: T) -> T
  3477. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_11
  3478. pub aya_obj::generated::bpf_attr__bindgen_ty_11::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  3479. pub aya_obj::generated::bpf_attr__bindgen_ty_11::_bitfield_align_1: [u8; 0]
  3480. pub aya_obj::generated::bpf_attr__bindgen_ty_11::cookie: aya_obj::generated::__u64
  3481. pub aya_obj::generated::bpf_attr__bindgen_ty_11::name: aya_obj::generated::__u64
  3482. pub aya_obj::generated::bpf_attr__bindgen_ty_11::prog_fd: aya_obj::generated::__u32
  3483. impl aya_obj::generated::bpf_attr__bindgen_ty_11
  3484. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::new_bitfield_1() -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  3485. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_11
  3486. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_11
  3487. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_11
  3488. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3489. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_11
  3490. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_11
  3491. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_11
  3492. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_11
  3493. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_11
  3494. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_11
  3495. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_11
  3496. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_11 where U: core::convert::From<T>
  3497. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::into(self) -> U
  3498. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_11 where U: core::convert::Into<T>
  3499. pub type aya_obj::generated::bpf_attr__bindgen_ty_11::Error = core::convert::Infallible
  3500. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3501. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_11 where U: core::convert::TryFrom<T>
  3502. pub type aya_obj::generated::bpf_attr__bindgen_ty_11::Error = <U as core::convert::TryFrom<T>>::Error
  3503. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3504. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::clone::Clone
  3505. pub type aya_obj::generated::bpf_attr__bindgen_ty_11::Owned = T
  3506. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::clone_into(&self, target: &mut T)
  3507. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::to_owned(&self) -> T
  3508. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: 'static + core::marker::Sized
  3509. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::type_id(&self) -> core::any::TypeId
  3510. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::marker::Sized
  3511. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::borrow(&self) -> &T
  3512. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::marker::Sized
  3513. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::borrow_mut(&mut self) -> &mut T
  3514. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::clone::Clone
  3515. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_11::clone_to_uninit(&self, dst: *mut T)
  3516. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_11 where T: core::marker::Copy
  3517. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_11::clone_to_uninit(&self, dst: *mut T)
  3518. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_11
  3519. pub fn aya_obj::generated::bpf_attr__bindgen_ty_11::from(t: T) -> T
  3520. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_12
  3521. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf: aya_obj::generated::__u64
  3522. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_flags: aya_obj::generated::__u32
  3523. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_buf: aya_obj::generated::__u64
  3524. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_level: aya_obj::generated::__u32
  3525. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_size: aya_obj::generated::__u32
  3526. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_log_true_size: aya_obj::generated::__u32
  3527. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_size: aya_obj::generated::__u32
  3528. pub aya_obj::generated::bpf_attr__bindgen_ty_12::btf_token_fd: aya_obj::generated::__s32
  3529. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_12
  3530. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_12
  3531. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_12
  3532. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3533. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_12
  3534. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_12
  3535. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_12
  3536. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_12
  3537. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_12
  3538. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_12
  3539. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_12
  3540. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_12 where U: core::convert::From<T>
  3541. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::into(self) -> U
  3542. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_12 where U: core::convert::Into<T>
  3543. pub type aya_obj::generated::bpf_attr__bindgen_ty_12::Error = core::convert::Infallible
  3544. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3545. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_12 where U: core::convert::TryFrom<T>
  3546. pub type aya_obj::generated::bpf_attr__bindgen_ty_12::Error = <U as core::convert::TryFrom<T>>::Error
  3547. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3548. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::clone::Clone
  3549. pub type aya_obj::generated::bpf_attr__bindgen_ty_12::Owned = T
  3550. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::clone_into(&self, target: &mut T)
  3551. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::to_owned(&self) -> T
  3552. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: 'static + core::marker::Sized
  3553. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::type_id(&self) -> core::any::TypeId
  3554. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::marker::Sized
  3555. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::borrow(&self) -> &T
  3556. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::marker::Sized
  3557. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::borrow_mut(&mut self) -> &mut T
  3558. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::clone::Clone
  3559. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_12::clone_to_uninit(&self, dst: *mut T)
  3560. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_12 where T: core::marker::Copy
  3561. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_12::clone_to_uninit(&self, dst: *mut T)
  3562. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_12
  3563. pub fn aya_obj::generated::bpf_attr__bindgen_ty_12::from(t: T) -> T
  3564. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_13
  3565. pub aya_obj::generated::bpf_attr__bindgen_ty_13::buf: aya_obj::generated::__u64
  3566. pub aya_obj::generated::bpf_attr__bindgen_ty_13::buf_len: aya_obj::generated::__u32
  3567. pub aya_obj::generated::bpf_attr__bindgen_ty_13::fd: aya_obj::generated::__u32
  3568. pub aya_obj::generated::bpf_attr__bindgen_ty_13::fd_type: aya_obj::generated::__u32
  3569. pub aya_obj::generated::bpf_attr__bindgen_ty_13::flags: aya_obj::generated::__u32
  3570. pub aya_obj::generated::bpf_attr__bindgen_ty_13::pid: aya_obj::generated::__u32
  3571. pub aya_obj::generated::bpf_attr__bindgen_ty_13::probe_addr: aya_obj::generated::__u64
  3572. pub aya_obj::generated::bpf_attr__bindgen_ty_13::probe_offset: aya_obj::generated::__u64
  3573. pub aya_obj::generated::bpf_attr__bindgen_ty_13::prog_id: aya_obj::generated::__u32
  3574. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_13
  3575. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_13
  3576. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_13
  3577. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3578. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_13
  3579. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_13
  3580. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_13
  3581. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_13
  3582. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_13
  3583. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_13
  3584. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_13
  3585. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_13 where U: core::convert::From<T>
  3586. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::into(self) -> U
  3587. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_13 where U: core::convert::Into<T>
  3588. pub type aya_obj::generated::bpf_attr__bindgen_ty_13::Error = core::convert::Infallible
  3589. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3590. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_13 where U: core::convert::TryFrom<T>
  3591. pub type aya_obj::generated::bpf_attr__bindgen_ty_13::Error = <U as core::convert::TryFrom<T>>::Error
  3592. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3593. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::clone::Clone
  3594. pub type aya_obj::generated::bpf_attr__bindgen_ty_13::Owned = T
  3595. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::clone_into(&self, target: &mut T)
  3596. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::to_owned(&self) -> T
  3597. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: 'static + core::marker::Sized
  3598. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::type_id(&self) -> core::any::TypeId
  3599. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::marker::Sized
  3600. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::borrow(&self) -> &T
  3601. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::marker::Sized
  3602. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::borrow_mut(&mut self) -> &mut T
  3603. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::clone::Clone
  3604. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_13::clone_to_uninit(&self, dst: *mut T)
  3605. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_13 where T: core::marker::Copy
  3606. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_13::clone_to_uninit(&self, dst: *mut T)
  3607. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_13
  3608. pub fn aya_obj::generated::bpf_attr__bindgen_ty_13::from(t: T) -> T
  3609. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14
  3610. pub aya_obj::generated::bpf_attr__bindgen_ty_14::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_1
  3611. pub aya_obj::generated::bpf_attr__bindgen_ty_14::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_2
  3612. pub aya_obj::generated::bpf_attr__bindgen_ty_14::__bindgen_anon_3: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3
  3613. pub aya_obj::generated::bpf_attr__bindgen_ty_14::attach_type: aya_obj::generated::__u32
  3614. pub aya_obj::generated::bpf_attr__bindgen_ty_14::flags: aya_obj::generated::__u32
  3615. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14
  3616. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14
  3617. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14
  3618. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14
  3619. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14
  3620. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14
  3621. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14
  3622. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14
  3623. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14
  3624. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14 where U: core::convert::From<T>
  3625. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::into(self) -> U
  3626. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14 where U: core::convert::Into<T>
  3627. pub type aya_obj::generated::bpf_attr__bindgen_ty_14::Error = core::convert::Infallible
  3628. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3629. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14 where U: core::convert::TryFrom<T>
  3630. pub type aya_obj::generated::bpf_attr__bindgen_ty_14::Error = <U as core::convert::TryFrom<T>>::Error
  3631. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3632. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::clone::Clone
  3633. pub type aya_obj::generated::bpf_attr__bindgen_ty_14::Owned = T
  3634. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::clone_into(&self, target: &mut T)
  3635. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::to_owned(&self) -> T
  3636. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: 'static + core::marker::Sized
  3637. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::type_id(&self) -> core::any::TypeId
  3638. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::marker::Sized
  3639. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::borrow(&self) -> &T
  3640. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::marker::Sized
  3641. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::borrow_mut(&mut self) -> &mut T
  3642. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::clone::Clone
  3643. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14::clone_to_uninit(&self, dst: *mut T)
  3644. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14 where T: core::marker::Copy
  3645. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14::clone_to_uninit(&self, dst: *mut T)
  3646. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14
  3647. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14::from(t: T) -> T
  3648. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3649. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::iter_info: aya_obj::generated::__u64
  3650. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::iter_info_len: aya_obj::generated::__u32
  3651. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3652. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3653. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3654. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3655. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3656. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3657. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3658. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3659. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3660. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3661. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3662. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::From<T>
  3663. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::into(self) -> U
  3664. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::Into<T>
  3665. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Error = core::convert::Infallible
  3666. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3667. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where U: core::convert::TryFrom<T>
  3668. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  3669. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3670. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::clone::Clone
  3671. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::Owned = T
  3672. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::clone_into(&self, target: &mut T)
  3673. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::to_owned(&self) -> T
  3674. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: 'static + core::marker::Sized
  3675. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  3676. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::marker::Sized
  3677. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::borrow(&self) -> &T
  3678. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::marker::Sized
  3679. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  3680. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::clone::Clone
  3681. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3682. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 where T: core::marker::Copy
  3683. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  3684. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1
  3685. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1::from(t: T) -> T
  3686. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3687. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::bpf_cookie: aya_obj::generated::__u64
  3688. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3689. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3690. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3691. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3692. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3693. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3694. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3695. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3696. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3697. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3698. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3699. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::From<T>
  3700. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::into(self) -> U
  3701. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::Into<T>
  3702. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Error = core::convert::Infallible
  3703. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3704. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where U: core::convert::TryFrom<T>
  3705. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  3706. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3707. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::clone::Clone
  3708. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::Owned = T
  3709. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::clone_into(&self, target: &mut T)
  3710. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::to_owned(&self) -> T
  3711. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: 'static + core::marker::Sized
  3712. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  3713. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::marker::Sized
  3714. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::borrow(&self) -> &T
  3715. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::marker::Sized
  3716. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  3717. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::clone::Clone
  3718. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  3719. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 where T: core::marker::Copy
  3720. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  3721. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2
  3722. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2::from(t: T) -> T
  3723. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3724. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::addrs: aya_obj::generated::__u64
  3725. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::cnt: aya_obj::generated::__u32
  3726. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::cookies: aya_obj::generated::__u64
  3727. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::flags: aya_obj::generated::__u32
  3728. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::syms: aya_obj::generated::__u64
  3729. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3730. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3731. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3732. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3733. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3734. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3735. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3736. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3737. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3738. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3739. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3740. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::From<T>
  3741. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::into(self) -> U
  3742. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::Into<T>
  3743. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Error = core::convert::Infallible
  3744. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3745. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where U: core::convert::TryFrom<T>
  3746. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Error = <U as core::convert::TryFrom<T>>::Error
  3747. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3748. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::clone::Clone
  3749. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::Owned = T
  3750. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::clone_into(&self, target: &mut T)
  3751. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::to_owned(&self) -> T
  3752. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: 'static + core::marker::Sized
  3753. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::type_id(&self) -> core::any::TypeId
  3754. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::marker::Sized
  3755. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::borrow(&self) -> &T
  3756. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::marker::Sized
  3757. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::borrow_mut(&mut self) -> &mut T
  3758. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::clone::Clone
  3759. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  3760. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 where T: core::marker::Copy
  3761. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  3762. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3
  3763. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3::from(t: T) -> T
  3764. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3765. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::cookie: aya_obj::generated::__u64
  3766. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::target_btf_id: aya_obj::generated::__u32
  3767. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3768. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3769. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3770. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3771. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3772. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3773. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3774. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3775. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3776. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3777. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3778. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::From<T>
  3779. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::into(self) -> U
  3780. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::Into<T>
  3781. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Error = core::convert::Infallible
  3782. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3783. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where U: core::convert::TryFrom<T>
  3784. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Error = <U as core::convert::TryFrom<T>>::Error
  3785. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3786. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::clone::Clone
  3787. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::Owned = T
  3788. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::clone_into(&self, target: &mut T)
  3789. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::to_owned(&self) -> T
  3790. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: 'static + core::marker::Sized
  3791. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::type_id(&self) -> core::any::TypeId
  3792. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::marker::Sized
  3793. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::borrow(&self) -> &T
  3794. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::marker::Sized
  3795. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::borrow_mut(&mut self) -> &mut T
  3796. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::clone::Clone
  3797. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  3798. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 where T: core::marker::Copy
  3799. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  3800. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4
  3801. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4::from(t: T) -> T
  3802. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3803. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::flags: aya_obj::generated::__u32
  3804. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::hooknum: aya_obj::generated::__u32
  3805. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::pf: aya_obj::generated::__u32
  3806. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::priority: aya_obj::generated::__s32
  3807. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3808. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3809. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3810. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3811. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3812. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3813. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3814. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3815. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3816. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3817. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3818. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::From<T>
  3819. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::into(self) -> U
  3820. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::Into<T>
  3821. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Error = core::convert::Infallible
  3822. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3823. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where U: core::convert::TryFrom<T>
  3824. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Error = <U as core::convert::TryFrom<T>>::Error
  3825. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3826. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::clone::Clone
  3827. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::Owned = T
  3828. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::clone_into(&self, target: &mut T)
  3829. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::to_owned(&self) -> T
  3830. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: 'static + core::marker::Sized
  3831. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::type_id(&self) -> core::any::TypeId
  3832. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::marker::Sized
  3833. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::borrow(&self) -> &T
  3834. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::marker::Sized
  3835. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::borrow_mut(&mut self) -> &mut T
  3836. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::clone::Clone
  3837. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::clone_to_uninit(&self, dst: *mut T)
  3838. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 where T: core::marker::Copy
  3839. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::clone_to_uninit(&self, dst: *mut T)
  3840. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5
  3841. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5::from(t: T) -> T
  3842. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3843. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1
  3844. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::expected_revision: aya_obj::generated::__u64
  3845. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3846. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3847. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3848. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3849. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3850. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3851. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3852. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3853. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3854. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where U: core::convert::From<T>
  3855. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::into(self) -> U
  3856. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where U: core::convert::Into<T>
  3857. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::Error = core::convert::Infallible
  3858. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3859. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where U: core::convert::TryFrom<T>
  3860. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::Error = <U as core::convert::TryFrom<T>>::Error
  3861. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3862. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where T: core::clone::Clone
  3863. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::Owned = T
  3864. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::clone_into(&self, target: &mut T)
  3865. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::to_owned(&self) -> T
  3866. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where T: 'static + core::marker::Sized
  3867. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::type_id(&self) -> core::any::TypeId
  3868. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where T: core::marker::Sized
  3869. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::borrow(&self) -> &T
  3870. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where T: core::marker::Sized
  3871. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::borrow_mut(&mut self) -> &mut T
  3872. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where T: core::clone::Clone
  3873. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::clone_to_uninit(&self, dst: *mut T)
  3874. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 where T: core::marker::Copy
  3875. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::clone_to_uninit(&self, dst: *mut T)
  3876. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6
  3877. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6::from(t: T) -> T
  3878. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3879. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::cnt: aya_obj::generated::__u32
  3880. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::cookies: aya_obj::generated::__u64
  3881. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::flags: aya_obj::generated::__u32
  3882. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::offsets: aya_obj::generated::__u64
  3883. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::path: aya_obj::generated::__u64
  3884. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::pid: aya_obj::generated::__u32
  3885. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::ref_ctr_offsets: aya_obj::generated::__u64
  3886. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3887. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3888. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3889. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3890. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3891. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3892. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3893. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3894. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3895. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3896. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3897. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where U: core::convert::From<T>
  3898. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::into(self) -> U
  3899. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where U: core::convert::Into<T>
  3900. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::Error = core::convert::Infallible
  3901. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3902. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where U: core::convert::TryFrom<T>
  3903. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::Error = <U as core::convert::TryFrom<T>>::Error
  3904. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3905. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where T: core::clone::Clone
  3906. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::Owned = T
  3907. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::clone_into(&self, target: &mut T)
  3908. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::to_owned(&self) -> T
  3909. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where T: 'static + core::marker::Sized
  3910. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::type_id(&self) -> core::any::TypeId
  3911. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where T: core::marker::Sized
  3912. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::borrow(&self) -> &T
  3913. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where T: core::marker::Sized
  3914. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::borrow_mut(&mut self) -> &mut T
  3915. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where T: core::clone::Clone
  3916. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::clone_to_uninit(&self, dst: *mut T)
  3917. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 where T: core::marker::Copy
  3918. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::clone_to_uninit(&self, dst: *mut T)
  3919. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7
  3920. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7::from(t: T) -> T
  3921. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3922. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1
  3923. pub aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::expected_revision: aya_obj::generated::__u64
  3924. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3925. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3926. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3927. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3928. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3929. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3930. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3931. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3932. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3933. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where U: core::convert::From<T>
  3934. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::into(self) -> U
  3935. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where U: core::convert::Into<T>
  3936. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::Error = core::convert::Infallible
  3937. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3938. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where U: core::convert::TryFrom<T>
  3939. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::Error = <U as core::convert::TryFrom<T>>::Error
  3940. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3941. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where T: core::clone::Clone
  3942. pub type aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::Owned = T
  3943. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::clone_into(&self, target: &mut T)
  3944. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::to_owned(&self) -> T
  3945. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where T: 'static + core::marker::Sized
  3946. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::type_id(&self) -> core::any::TypeId
  3947. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where T: core::marker::Sized
  3948. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::borrow(&self) -> &T
  3949. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where T: core::marker::Sized
  3950. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::borrow_mut(&mut self) -> &mut T
  3951. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where T: core::clone::Clone
  3952. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::clone_to_uninit(&self, dst: *mut T)
  3953. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 where T: core::marker::Copy
  3954. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::clone_to_uninit(&self, dst: *mut T)
  3955. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8
  3956. pub fn aya_obj::generated::bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8::from(t: T) -> T
  3957. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_15
  3958. pub aya_obj::generated::bpf_attr__bindgen_ty_15::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_1
  3959. pub aya_obj::generated::bpf_attr__bindgen_ty_15::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_15__bindgen_ty_2
  3960. pub aya_obj::generated::bpf_attr__bindgen_ty_15::flags: aya_obj::generated::__u32
  3961. pub aya_obj::generated::bpf_attr__bindgen_ty_15::link_fd: aya_obj::generated::__u32
  3962. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_15
  3963. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_15
  3964. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_15
  3965. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_15
  3966. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_15
  3967. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_15
  3968. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_15
  3969. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15
  3970. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_15
  3971. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_15 where U: core::convert::From<T>
  3972. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::into(self) -> U
  3973. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_15 where U: core::convert::Into<T>
  3974. pub type aya_obj::generated::bpf_attr__bindgen_ty_15::Error = core::convert::Infallible
  3975. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3976. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_15 where U: core::convert::TryFrom<T>
  3977. pub type aya_obj::generated::bpf_attr__bindgen_ty_15::Error = <U as core::convert::TryFrom<T>>::Error
  3978. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3979. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::clone::Clone
  3980. pub type aya_obj::generated::bpf_attr__bindgen_ty_15::Owned = T
  3981. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::clone_into(&self, target: &mut T)
  3982. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::to_owned(&self) -> T
  3983. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: 'static + core::marker::Sized
  3984. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::type_id(&self) -> core::any::TypeId
  3985. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::marker::Sized
  3986. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::borrow(&self) -> &T
  3987. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::marker::Sized
  3988. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::borrow_mut(&mut self) -> &mut T
  3989. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::clone::Clone
  3990. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_15::clone_to_uninit(&self, dst: *mut T)
  3991. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_15 where T: core::marker::Copy
  3992. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_15::clone_to_uninit(&self, dst: *mut T)
  3993. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_15
  3994. pub fn aya_obj::generated::bpf_attr__bindgen_ty_15::from(t: T) -> T
  3995. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_16
  3996. pub aya_obj::generated::bpf_attr__bindgen_ty_16::link_fd: aya_obj::generated::__u32
  3997. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_16
  3998. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_16
  3999. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_16
  4000. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4001. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_16
  4002. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_16
  4003. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_16
  4004. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_16
  4005. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_16
  4006. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_16
  4007. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_16
  4008. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_16 where U: core::convert::From<T>
  4009. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::into(self) -> U
  4010. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_16 where U: core::convert::Into<T>
  4011. pub type aya_obj::generated::bpf_attr__bindgen_ty_16::Error = core::convert::Infallible
  4012. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4013. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_16 where U: core::convert::TryFrom<T>
  4014. pub type aya_obj::generated::bpf_attr__bindgen_ty_16::Error = <U as core::convert::TryFrom<T>>::Error
  4015. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4016. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::clone::Clone
  4017. pub type aya_obj::generated::bpf_attr__bindgen_ty_16::Owned = T
  4018. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::clone_into(&self, target: &mut T)
  4019. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::to_owned(&self) -> T
  4020. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: 'static + core::marker::Sized
  4021. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::type_id(&self) -> core::any::TypeId
  4022. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::marker::Sized
  4023. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::borrow(&self) -> &T
  4024. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::marker::Sized
  4025. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::borrow_mut(&mut self) -> &mut T
  4026. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::clone::Clone
  4027. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_16::clone_to_uninit(&self, dst: *mut T)
  4028. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_16 where T: core::marker::Copy
  4029. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_16::clone_to_uninit(&self, dst: *mut T)
  4030. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_16
  4031. pub fn aya_obj::generated::bpf_attr__bindgen_ty_16::from(t: T) -> T
  4032. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_17
  4033. pub aya_obj::generated::bpf_attr__bindgen_ty_17::type_: aya_obj::generated::__u32
  4034. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_17
  4035. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_17
  4036. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_17
  4037. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4038. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_17
  4039. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_17
  4040. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_17
  4041. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_17
  4042. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_17
  4043. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_17
  4044. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_17
  4045. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_17 where U: core::convert::From<T>
  4046. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::into(self) -> U
  4047. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_17 where U: core::convert::Into<T>
  4048. pub type aya_obj::generated::bpf_attr__bindgen_ty_17::Error = core::convert::Infallible
  4049. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4050. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_17 where U: core::convert::TryFrom<T>
  4051. pub type aya_obj::generated::bpf_attr__bindgen_ty_17::Error = <U as core::convert::TryFrom<T>>::Error
  4052. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4053. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::clone::Clone
  4054. pub type aya_obj::generated::bpf_attr__bindgen_ty_17::Owned = T
  4055. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::clone_into(&self, target: &mut T)
  4056. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::to_owned(&self) -> T
  4057. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: 'static + core::marker::Sized
  4058. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::type_id(&self) -> core::any::TypeId
  4059. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::marker::Sized
  4060. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::borrow(&self) -> &T
  4061. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::marker::Sized
  4062. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::borrow_mut(&mut self) -> &mut T
  4063. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::clone::Clone
  4064. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_17::clone_to_uninit(&self, dst: *mut T)
  4065. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_17 where T: core::marker::Copy
  4066. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_17::clone_to_uninit(&self, dst: *mut T)
  4067. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_17
  4068. pub fn aya_obj::generated::bpf_attr__bindgen_ty_17::from(t: T) -> T
  4069. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_18
  4070. pub aya_obj::generated::bpf_attr__bindgen_ty_18::flags: aya_obj::generated::__u32
  4071. pub aya_obj::generated::bpf_attr__bindgen_ty_18::link_fd: aya_obj::generated::__u32
  4072. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_18
  4073. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_18
  4074. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_18
  4075. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4076. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_18
  4077. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_18
  4078. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_18
  4079. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_18
  4080. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_18
  4081. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_18
  4082. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_18
  4083. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_18 where U: core::convert::From<T>
  4084. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::into(self) -> U
  4085. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_18 where U: core::convert::Into<T>
  4086. pub type aya_obj::generated::bpf_attr__bindgen_ty_18::Error = core::convert::Infallible
  4087. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4088. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_18 where U: core::convert::TryFrom<T>
  4089. pub type aya_obj::generated::bpf_attr__bindgen_ty_18::Error = <U as core::convert::TryFrom<T>>::Error
  4090. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4091. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::clone::Clone
  4092. pub type aya_obj::generated::bpf_attr__bindgen_ty_18::Owned = T
  4093. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::clone_into(&self, target: &mut T)
  4094. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::to_owned(&self) -> T
  4095. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: 'static + core::marker::Sized
  4096. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::type_id(&self) -> core::any::TypeId
  4097. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::marker::Sized
  4098. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::borrow(&self) -> &T
  4099. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::marker::Sized
  4100. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::borrow_mut(&mut self) -> &mut T
  4101. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::clone::Clone
  4102. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_18::clone_to_uninit(&self, dst: *mut T)
  4103. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_18 where T: core::marker::Copy
  4104. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_18::clone_to_uninit(&self, dst: *mut T)
  4105. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_18
  4106. pub fn aya_obj::generated::bpf_attr__bindgen_ty_18::from(t: T) -> T
  4107. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_19
  4108. pub aya_obj::generated::bpf_attr__bindgen_ty_19::flags: aya_obj::generated::__u32
  4109. pub aya_obj::generated::bpf_attr__bindgen_ty_19::map_fd: aya_obj::generated::__u32
  4110. pub aya_obj::generated::bpf_attr__bindgen_ty_19::prog_fd: aya_obj::generated::__u32
  4111. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_19
  4112. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_19
  4113. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_19
  4114. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4115. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_19
  4116. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_19
  4117. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_19
  4118. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_19
  4119. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_19
  4120. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_19
  4121. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_19
  4122. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_19 where U: core::convert::From<T>
  4123. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::into(self) -> U
  4124. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_19 where U: core::convert::Into<T>
  4125. pub type aya_obj::generated::bpf_attr__bindgen_ty_19::Error = core::convert::Infallible
  4126. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4127. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_19 where U: core::convert::TryFrom<T>
  4128. pub type aya_obj::generated::bpf_attr__bindgen_ty_19::Error = <U as core::convert::TryFrom<T>>::Error
  4129. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4130. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::clone::Clone
  4131. pub type aya_obj::generated::bpf_attr__bindgen_ty_19::Owned = T
  4132. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::clone_into(&self, target: &mut T)
  4133. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::to_owned(&self) -> T
  4134. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: 'static + core::marker::Sized
  4135. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::type_id(&self) -> core::any::TypeId
  4136. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::marker::Sized
  4137. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::borrow(&self) -> &T
  4138. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::marker::Sized
  4139. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::borrow_mut(&mut self) -> &mut T
  4140. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::clone::Clone
  4141. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_19::clone_to_uninit(&self, dst: *mut T)
  4142. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_19 where T: core::marker::Copy
  4143. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_19::clone_to_uninit(&self, dst: *mut T)
  4144. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_19
  4145. pub fn aya_obj::generated::bpf_attr__bindgen_ty_19::from(t: T) -> T
  4146. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_2
  4147. pub aya_obj::generated::bpf_attr__bindgen_ty_2::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_2__bindgen_ty_1
  4148. pub aya_obj::generated::bpf_attr__bindgen_ty_2::flags: aya_obj::generated::__u64
  4149. pub aya_obj::generated::bpf_attr__bindgen_ty_2::key: aya_obj::generated::__u64
  4150. pub aya_obj::generated::bpf_attr__bindgen_ty_2::map_fd: aya_obj::generated::__u32
  4151. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_2
  4152. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_2
  4153. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_2
  4154. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_2
  4155. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_2
  4156. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_2
  4157. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_2
  4158. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2
  4159. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_2
  4160. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_2 where U: core::convert::From<T>
  4161. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::into(self) -> U
  4162. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_2 where U: core::convert::Into<T>
  4163. pub type aya_obj::generated::bpf_attr__bindgen_ty_2::Error = core::convert::Infallible
  4164. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4165. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_2 where U: core::convert::TryFrom<T>
  4166. pub type aya_obj::generated::bpf_attr__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  4167. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4168. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::clone::Clone
  4169. pub type aya_obj::generated::bpf_attr__bindgen_ty_2::Owned = T
  4170. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::clone_into(&self, target: &mut T)
  4171. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::to_owned(&self) -> T
  4172. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: 'static + core::marker::Sized
  4173. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  4174. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::marker::Sized
  4175. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::borrow(&self) -> &T
  4176. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::marker::Sized
  4177. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  4178. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::clone::Clone
  4179. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  4180. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_2 where T: core::marker::Copy
  4181. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  4182. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_2
  4183. pub fn aya_obj::generated::bpf_attr__bindgen_ty_2::from(t: T) -> T
  4184. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_20
  4185. pub aya_obj::generated::bpf_attr__bindgen_ty_20::bpffs_fd: aya_obj::generated::__u32
  4186. pub aya_obj::generated::bpf_attr__bindgen_ty_20::flags: aya_obj::generated::__u32
  4187. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_20
  4188. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_20
  4189. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_20
  4190. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4191. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_20
  4192. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_20
  4193. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_20
  4194. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_20
  4195. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_20
  4196. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_20
  4197. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_20
  4198. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_20 where U: core::convert::From<T>
  4199. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::into(self) -> U
  4200. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_20 where U: core::convert::Into<T>
  4201. pub type aya_obj::generated::bpf_attr__bindgen_ty_20::Error = core::convert::Infallible
  4202. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4203. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_20 where U: core::convert::TryFrom<T>
  4204. pub type aya_obj::generated::bpf_attr__bindgen_ty_20::Error = <U as core::convert::TryFrom<T>>::Error
  4205. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4206. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_20 where T: core::clone::Clone
  4207. pub type aya_obj::generated::bpf_attr__bindgen_ty_20::Owned = T
  4208. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::clone_into(&self, target: &mut T)
  4209. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::to_owned(&self) -> T
  4210. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_20 where T: 'static + core::marker::Sized
  4211. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::type_id(&self) -> core::any::TypeId
  4212. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_20 where T: core::marker::Sized
  4213. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::borrow(&self) -> &T
  4214. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_20 where T: core::marker::Sized
  4215. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::borrow_mut(&mut self) -> &mut T
  4216. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_20 where T: core::clone::Clone
  4217. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_20::clone_to_uninit(&self, dst: *mut T)
  4218. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_20 where T: core::marker::Copy
  4219. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_20::clone_to_uninit(&self, dst: *mut T)
  4220. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_20
  4221. pub fn aya_obj::generated::bpf_attr__bindgen_ty_20::from(t: T) -> T
  4222. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_3
  4223. pub aya_obj::generated::bpf_attr__bindgen_ty_3::count: aya_obj::generated::__u32
  4224. pub aya_obj::generated::bpf_attr__bindgen_ty_3::elem_flags: aya_obj::generated::__u64
  4225. pub aya_obj::generated::bpf_attr__bindgen_ty_3::flags: aya_obj::generated::__u64
  4226. pub aya_obj::generated::bpf_attr__bindgen_ty_3::in_batch: aya_obj::generated::__u64
  4227. pub aya_obj::generated::bpf_attr__bindgen_ty_3::keys: aya_obj::generated::__u64
  4228. pub aya_obj::generated::bpf_attr__bindgen_ty_3::map_fd: aya_obj::generated::__u32
  4229. pub aya_obj::generated::bpf_attr__bindgen_ty_3::out_batch: aya_obj::generated::__u64
  4230. pub aya_obj::generated::bpf_attr__bindgen_ty_3::values: aya_obj::generated::__u64
  4231. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_3
  4232. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_3
  4233. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_3
  4234. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4235. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_3
  4236. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_3
  4237. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_3
  4238. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_3
  4239. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_3
  4240. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_3
  4241. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_3
  4242. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_3 where U: core::convert::From<T>
  4243. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::into(self) -> U
  4244. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_3 where U: core::convert::Into<T>
  4245. pub type aya_obj::generated::bpf_attr__bindgen_ty_3::Error = core::convert::Infallible
  4246. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4247. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_3 where U: core::convert::TryFrom<T>
  4248. pub type aya_obj::generated::bpf_attr__bindgen_ty_3::Error = <U as core::convert::TryFrom<T>>::Error
  4249. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4250. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::clone::Clone
  4251. pub type aya_obj::generated::bpf_attr__bindgen_ty_3::Owned = T
  4252. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::clone_into(&self, target: &mut T)
  4253. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::to_owned(&self) -> T
  4254. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: 'static + core::marker::Sized
  4255. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::type_id(&self) -> core::any::TypeId
  4256. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::marker::Sized
  4257. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::borrow(&self) -> &T
  4258. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::marker::Sized
  4259. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::borrow_mut(&mut self) -> &mut T
  4260. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::clone::Clone
  4261. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  4262. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_3 where T: core::marker::Copy
  4263. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  4264. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_3
  4265. pub fn aya_obj::generated::bpf_attr__bindgen_ty_3::from(t: T) -> T
  4266. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_4
  4267. pub aya_obj::generated::bpf_attr__bindgen_ty_4::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_4__bindgen_ty_1
  4268. pub aya_obj::generated::bpf_attr__bindgen_ty_4::attach_btf_id: aya_obj::generated::__u32
  4269. pub aya_obj::generated::bpf_attr__bindgen_ty_4::core_relo_cnt: aya_obj::generated::__u32
  4270. pub aya_obj::generated::bpf_attr__bindgen_ty_4::core_relo_rec_size: aya_obj::generated::__u32
  4271. pub aya_obj::generated::bpf_attr__bindgen_ty_4::core_relos: aya_obj::generated::__u64
  4272. pub aya_obj::generated::bpf_attr__bindgen_ty_4::expected_attach_type: aya_obj::generated::__u32
  4273. pub aya_obj::generated::bpf_attr__bindgen_ty_4::fd_array: aya_obj::generated::__u64
  4274. pub aya_obj::generated::bpf_attr__bindgen_ty_4::func_info: aya_obj::generated::__u64
  4275. pub aya_obj::generated::bpf_attr__bindgen_ty_4::func_info_cnt: aya_obj::generated::__u32
  4276. pub aya_obj::generated::bpf_attr__bindgen_ty_4::func_info_rec_size: aya_obj::generated::__u32
  4277. pub aya_obj::generated::bpf_attr__bindgen_ty_4::insn_cnt: aya_obj::generated::__u32
  4278. pub aya_obj::generated::bpf_attr__bindgen_ty_4::insns: aya_obj::generated::__u64
  4279. pub aya_obj::generated::bpf_attr__bindgen_ty_4::kern_version: aya_obj::generated::__u32
  4280. pub aya_obj::generated::bpf_attr__bindgen_ty_4::license: aya_obj::generated::__u64
  4281. pub aya_obj::generated::bpf_attr__bindgen_ty_4::line_info: aya_obj::generated::__u64
  4282. pub aya_obj::generated::bpf_attr__bindgen_ty_4::line_info_cnt: aya_obj::generated::__u32
  4283. pub aya_obj::generated::bpf_attr__bindgen_ty_4::line_info_rec_size: aya_obj::generated::__u32
  4284. pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_buf: aya_obj::generated::__u64
  4285. pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_level: aya_obj::generated::__u32
  4286. pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_size: aya_obj::generated::__u32
  4287. pub aya_obj::generated::bpf_attr__bindgen_ty_4::log_true_size: aya_obj::generated::__u32
  4288. pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_btf_fd: aya_obj::generated::__u32
  4289. pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_flags: aya_obj::generated::__u32
  4290. pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_ifindex: aya_obj::generated::__u32
  4291. pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_name: [core::ffi::c_char; 16]
  4292. pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_token_fd: aya_obj::generated::__s32
  4293. pub aya_obj::generated::bpf_attr__bindgen_ty_4::prog_type: aya_obj::generated::__u32
  4294. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_4
  4295. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_4
  4296. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_4
  4297. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_4
  4298. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_4
  4299. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_4
  4300. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_4
  4301. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4
  4302. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_4
  4303. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_4 where U: core::convert::From<T>
  4304. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::into(self) -> U
  4305. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_4 where U: core::convert::Into<T>
  4306. pub type aya_obj::generated::bpf_attr__bindgen_ty_4::Error = core::convert::Infallible
  4307. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4308. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_4 where U: core::convert::TryFrom<T>
  4309. pub type aya_obj::generated::bpf_attr__bindgen_ty_4::Error = <U as core::convert::TryFrom<T>>::Error
  4310. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4311. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::clone::Clone
  4312. pub type aya_obj::generated::bpf_attr__bindgen_ty_4::Owned = T
  4313. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::clone_into(&self, target: &mut T)
  4314. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::to_owned(&self) -> T
  4315. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: 'static + core::marker::Sized
  4316. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::type_id(&self) -> core::any::TypeId
  4317. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::marker::Sized
  4318. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::borrow(&self) -> &T
  4319. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::marker::Sized
  4320. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::borrow_mut(&mut self) -> &mut T
  4321. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::clone::Clone
  4322. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  4323. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_4 where T: core::marker::Copy
  4324. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  4325. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_4
  4326. pub fn aya_obj::generated::bpf_attr__bindgen_ty_4::from(t: T) -> T
  4327. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_5
  4328. pub aya_obj::generated::bpf_attr__bindgen_ty_5::bpf_fd: aya_obj::generated::__u32
  4329. pub aya_obj::generated::bpf_attr__bindgen_ty_5::file_flags: aya_obj::generated::__u32
  4330. pub aya_obj::generated::bpf_attr__bindgen_ty_5::path_fd: aya_obj::generated::__s32
  4331. pub aya_obj::generated::bpf_attr__bindgen_ty_5::pathname: aya_obj::generated::__u64
  4332. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_5
  4333. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_5
  4334. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_5
  4335. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4336. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_5
  4337. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_5
  4338. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_5
  4339. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_5
  4340. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_5
  4341. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_5
  4342. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_5
  4343. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_5 where U: core::convert::From<T>
  4344. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::into(self) -> U
  4345. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_5 where U: core::convert::Into<T>
  4346. pub type aya_obj::generated::bpf_attr__bindgen_ty_5::Error = core::convert::Infallible
  4347. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4348. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_5 where U: core::convert::TryFrom<T>
  4349. pub type aya_obj::generated::bpf_attr__bindgen_ty_5::Error = <U as core::convert::TryFrom<T>>::Error
  4350. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4351. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::clone::Clone
  4352. pub type aya_obj::generated::bpf_attr__bindgen_ty_5::Owned = T
  4353. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::clone_into(&self, target: &mut T)
  4354. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::to_owned(&self) -> T
  4355. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: 'static + core::marker::Sized
  4356. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::type_id(&self) -> core::any::TypeId
  4357. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::marker::Sized
  4358. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::borrow(&self) -> &T
  4359. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::marker::Sized
  4360. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::borrow_mut(&mut self) -> &mut T
  4361. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::clone::Clone
  4362. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_5::clone_to_uninit(&self, dst: *mut T)
  4363. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_5 where T: core::marker::Copy
  4364. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_5::clone_to_uninit(&self, dst: *mut T)
  4365. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_5
  4366. pub fn aya_obj::generated::bpf_attr__bindgen_ty_5::from(t: T) -> T
  4367. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_6
  4368. pub aya_obj::generated::bpf_attr__bindgen_ty_6::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_1
  4369. pub aya_obj::generated::bpf_attr__bindgen_ty_6::__bindgen_anon_2: aya_obj::generated::bpf_attr__bindgen_ty_6__bindgen_ty_2
  4370. pub aya_obj::generated::bpf_attr__bindgen_ty_6::attach_bpf_fd: aya_obj::generated::__u32
  4371. pub aya_obj::generated::bpf_attr__bindgen_ty_6::attach_flags: aya_obj::generated::__u32
  4372. pub aya_obj::generated::bpf_attr__bindgen_ty_6::attach_type: aya_obj::generated::__u32
  4373. pub aya_obj::generated::bpf_attr__bindgen_ty_6::expected_revision: aya_obj::generated::__u64
  4374. pub aya_obj::generated::bpf_attr__bindgen_ty_6::replace_bpf_fd: aya_obj::generated::__u32
  4375. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_6
  4376. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_6
  4377. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_6
  4378. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_6
  4379. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_6
  4380. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_6
  4381. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_6
  4382. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6
  4383. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_6
  4384. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_6 where U: core::convert::From<T>
  4385. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::into(self) -> U
  4386. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_6 where U: core::convert::Into<T>
  4387. pub type aya_obj::generated::bpf_attr__bindgen_ty_6::Error = core::convert::Infallible
  4388. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4389. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_6 where U: core::convert::TryFrom<T>
  4390. pub type aya_obj::generated::bpf_attr__bindgen_ty_6::Error = <U as core::convert::TryFrom<T>>::Error
  4391. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4392. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::clone::Clone
  4393. pub type aya_obj::generated::bpf_attr__bindgen_ty_6::Owned = T
  4394. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::clone_into(&self, target: &mut T)
  4395. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::to_owned(&self) -> T
  4396. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: 'static + core::marker::Sized
  4397. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::type_id(&self) -> core::any::TypeId
  4398. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::marker::Sized
  4399. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::borrow(&self) -> &T
  4400. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::marker::Sized
  4401. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::borrow_mut(&mut self) -> &mut T
  4402. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::clone::Clone
  4403. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_6::clone_to_uninit(&self, dst: *mut T)
  4404. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_6 where T: core::marker::Copy
  4405. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_6::clone_to_uninit(&self, dst: *mut T)
  4406. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_6
  4407. pub fn aya_obj::generated::bpf_attr__bindgen_ty_6::from(t: T) -> T
  4408. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_7
  4409. pub aya_obj::generated::bpf_attr__bindgen_ty_7::batch_size: aya_obj::generated::__u32
  4410. pub aya_obj::generated::bpf_attr__bindgen_ty_7::cpu: aya_obj::generated::__u32
  4411. pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_in: aya_obj::generated::__u64
  4412. pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_out: aya_obj::generated::__u64
  4413. pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_size_in: aya_obj::generated::__u32
  4414. pub aya_obj::generated::bpf_attr__bindgen_ty_7::ctx_size_out: aya_obj::generated::__u32
  4415. pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_in: aya_obj::generated::__u64
  4416. pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_out: aya_obj::generated::__u64
  4417. pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_size_in: aya_obj::generated::__u32
  4418. pub aya_obj::generated::bpf_attr__bindgen_ty_7::data_size_out: aya_obj::generated::__u32
  4419. pub aya_obj::generated::bpf_attr__bindgen_ty_7::duration: aya_obj::generated::__u32
  4420. pub aya_obj::generated::bpf_attr__bindgen_ty_7::flags: aya_obj::generated::__u32
  4421. pub aya_obj::generated::bpf_attr__bindgen_ty_7::prog_fd: aya_obj::generated::__u32
  4422. pub aya_obj::generated::bpf_attr__bindgen_ty_7::repeat: aya_obj::generated::__u32
  4423. pub aya_obj::generated::bpf_attr__bindgen_ty_7::retval: aya_obj::generated::__u32
  4424. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_7
  4425. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_7
  4426. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_7
  4427. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4428. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_7
  4429. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_7
  4430. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_7
  4431. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_7
  4432. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_7
  4433. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_7
  4434. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_7
  4435. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_7 where U: core::convert::From<T>
  4436. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::into(self) -> U
  4437. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_7 where U: core::convert::Into<T>
  4438. pub type aya_obj::generated::bpf_attr__bindgen_ty_7::Error = core::convert::Infallible
  4439. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4440. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_7 where U: core::convert::TryFrom<T>
  4441. pub type aya_obj::generated::bpf_attr__bindgen_ty_7::Error = <U as core::convert::TryFrom<T>>::Error
  4442. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4443. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::clone::Clone
  4444. pub type aya_obj::generated::bpf_attr__bindgen_ty_7::Owned = T
  4445. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::clone_into(&self, target: &mut T)
  4446. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::to_owned(&self) -> T
  4447. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: 'static + core::marker::Sized
  4448. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::type_id(&self) -> core::any::TypeId
  4449. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::marker::Sized
  4450. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::borrow(&self) -> &T
  4451. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::marker::Sized
  4452. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::borrow_mut(&mut self) -> &mut T
  4453. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::clone::Clone
  4454. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_7::clone_to_uninit(&self, dst: *mut T)
  4455. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_7 where T: core::marker::Copy
  4456. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_7::clone_to_uninit(&self, dst: *mut T)
  4457. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_7
  4458. pub fn aya_obj::generated::bpf_attr__bindgen_ty_7::from(t: T) -> T
  4459. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_8
  4460. pub aya_obj::generated::bpf_attr__bindgen_ty_8::__bindgen_anon_1: aya_obj::generated::bpf_attr__bindgen_ty_8__bindgen_ty_1
  4461. pub aya_obj::generated::bpf_attr__bindgen_ty_8::next_id: aya_obj::generated::__u32
  4462. pub aya_obj::generated::bpf_attr__bindgen_ty_8::open_flags: aya_obj::generated::__u32
  4463. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_8
  4464. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_8
  4465. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_8
  4466. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_8
  4467. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_8
  4468. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_8
  4469. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_8
  4470. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8
  4471. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_8
  4472. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_8 where U: core::convert::From<T>
  4473. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::into(self) -> U
  4474. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_8 where U: core::convert::Into<T>
  4475. pub type aya_obj::generated::bpf_attr__bindgen_ty_8::Error = core::convert::Infallible
  4476. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4477. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_8 where U: core::convert::TryFrom<T>
  4478. pub type aya_obj::generated::bpf_attr__bindgen_ty_8::Error = <U as core::convert::TryFrom<T>>::Error
  4479. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4480. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::clone::Clone
  4481. pub type aya_obj::generated::bpf_attr__bindgen_ty_8::Owned = T
  4482. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::clone_into(&self, target: &mut T)
  4483. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::to_owned(&self) -> T
  4484. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: 'static + core::marker::Sized
  4485. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::type_id(&self) -> core::any::TypeId
  4486. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::marker::Sized
  4487. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::borrow(&self) -> &T
  4488. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::marker::Sized
  4489. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::borrow_mut(&mut self) -> &mut T
  4490. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::clone::Clone
  4491. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_8::clone_to_uninit(&self, dst: *mut T)
  4492. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_8 where T: core::marker::Copy
  4493. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_8::clone_to_uninit(&self, dst: *mut T)
  4494. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_8
  4495. pub fn aya_obj::generated::bpf_attr__bindgen_ty_8::from(t: T) -> T
  4496. #[repr(C)] pub struct aya_obj::generated::bpf_attr__bindgen_ty_9
  4497. pub aya_obj::generated::bpf_attr__bindgen_ty_9::bpf_fd: aya_obj::generated::__u32
  4498. pub aya_obj::generated::bpf_attr__bindgen_ty_9::info: aya_obj::generated::__u64
  4499. pub aya_obj::generated::bpf_attr__bindgen_ty_9::info_len: aya_obj::generated::__u32
  4500. impl core::clone::Clone for aya_obj::generated::bpf_attr__bindgen_ty_9
  4501. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::clone(&self) -> aya_obj::generated::bpf_attr__bindgen_ty_9
  4502. impl core::fmt::Debug for aya_obj::generated::bpf_attr__bindgen_ty_9
  4503. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4504. impl core::marker::Copy for aya_obj::generated::bpf_attr__bindgen_ty_9
  4505. impl core::marker::Freeze for aya_obj::generated::bpf_attr__bindgen_ty_9
  4506. impl core::marker::Send for aya_obj::generated::bpf_attr__bindgen_ty_9
  4507. impl core::marker::Sync for aya_obj::generated::bpf_attr__bindgen_ty_9
  4508. impl core::marker::Unpin for aya_obj::generated::bpf_attr__bindgen_ty_9
  4509. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_9
  4510. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_attr__bindgen_ty_9
  4511. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_attr__bindgen_ty_9 where U: core::convert::From<T>
  4512. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::into(self) -> U
  4513. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_attr__bindgen_ty_9 where U: core::convert::Into<T>
  4514. pub type aya_obj::generated::bpf_attr__bindgen_ty_9::Error = core::convert::Infallible
  4515. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4516. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_attr__bindgen_ty_9 where U: core::convert::TryFrom<T>
  4517. pub type aya_obj::generated::bpf_attr__bindgen_ty_9::Error = <U as core::convert::TryFrom<T>>::Error
  4518. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4519. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::clone::Clone
  4520. pub type aya_obj::generated::bpf_attr__bindgen_ty_9::Owned = T
  4521. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::clone_into(&self, target: &mut T)
  4522. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::to_owned(&self) -> T
  4523. impl<T> core::any::Any for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: 'static + core::marker::Sized
  4524. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::type_id(&self) -> core::any::TypeId
  4525. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::marker::Sized
  4526. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::borrow(&self) -> &T
  4527. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::marker::Sized
  4528. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::borrow_mut(&mut self) -> &mut T
  4529. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::clone::Clone
  4530. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_9::clone_to_uninit(&self, dst: *mut T)
  4531. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_attr__bindgen_ty_9 where T: core::marker::Copy
  4532. pub unsafe fn aya_obj::generated::bpf_attr__bindgen_ty_9::clone_to_uninit(&self, dst: *mut T)
  4533. impl<T> core::convert::From<T> for aya_obj::generated::bpf_attr__bindgen_ty_9
  4534. pub fn aya_obj::generated::bpf_attr__bindgen_ty_9::from(t: T) -> T
  4535. #[repr(C)] pub struct aya_obj::generated::bpf_btf_info
  4536. pub aya_obj::generated::bpf_btf_info::btf: aya_obj::generated::__u64
  4537. pub aya_obj::generated::bpf_btf_info::btf_size: aya_obj::generated::__u32
  4538. pub aya_obj::generated::bpf_btf_info::id: aya_obj::generated::__u32
  4539. pub aya_obj::generated::bpf_btf_info::kernel_btf: aya_obj::generated::__u32
  4540. pub aya_obj::generated::bpf_btf_info::name: aya_obj::generated::__u64
  4541. pub aya_obj::generated::bpf_btf_info::name_len: aya_obj::generated::__u32
  4542. impl core::clone::Clone for aya_obj::generated::bpf_btf_info
  4543. pub fn aya_obj::generated::bpf_btf_info::clone(&self) -> aya_obj::generated::bpf_btf_info
  4544. impl core::fmt::Debug for aya_obj::generated::bpf_btf_info
  4545. pub fn aya_obj::generated::bpf_btf_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4546. impl core::marker::Copy for aya_obj::generated::bpf_btf_info
  4547. impl core::marker::Freeze for aya_obj::generated::bpf_btf_info
  4548. impl core::marker::Send for aya_obj::generated::bpf_btf_info
  4549. impl core::marker::Sync for aya_obj::generated::bpf_btf_info
  4550. impl core::marker::Unpin for aya_obj::generated::bpf_btf_info
  4551. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_btf_info
  4552. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_btf_info
  4553. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_btf_info where U: core::convert::From<T>
  4554. pub fn aya_obj::generated::bpf_btf_info::into(self) -> U
  4555. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_btf_info where U: core::convert::Into<T>
  4556. pub type aya_obj::generated::bpf_btf_info::Error = core::convert::Infallible
  4557. pub fn aya_obj::generated::bpf_btf_info::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4558. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_btf_info where U: core::convert::TryFrom<T>
  4559. pub type aya_obj::generated::bpf_btf_info::Error = <U as core::convert::TryFrom<T>>::Error
  4560. pub fn aya_obj::generated::bpf_btf_info::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4561. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_btf_info where T: core::clone::Clone
  4562. pub type aya_obj::generated::bpf_btf_info::Owned = T
  4563. pub fn aya_obj::generated::bpf_btf_info::clone_into(&self, target: &mut T)
  4564. pub fn aya_obj::generated::bpf_btf_info::to_owned(&self) -> T
  4565. impl<T> core::any::Any for aya_obj::generated::bpf_btf_info where T: 'static + core::marker::Sized
  4566. pub fn aya_obj::generated::bpf_btf_info::type_id(&self) -> core::any::TypeId
  4567. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_btf_info where T: core::marker::Sized
  4568. pub fn aya_obj::generated::bpf_btf_info::borrow(&self) -> &T
  4569. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_btf_info where T: core::marker::Sized
  4570. pub fn aya_obj::generated::bpf_btf_info::borrow_mut(&mut self) -> &mut T
  4571. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_btf_info where T: core::clone::Clone
  4572. pub unsafe fn aya_obj::generated::bpf_btf_info::clone_to_uninit(&self, dst: *mut T)
  4573. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_btf_info where T: core::marker::Copy
  4574. pub unsafe fn aya_obj::generated::bpf_btf_info::clone_to_uninit(&self, dst: *mut T)
  4575. impl<T> core::convert::From<T> for aya_obj::generated::bpf_btf_info
  4576. pub fn aya_obj::generated::bpf_btf_info::from(t: T) -> T
  4577. #[repr(C)] pub struct aya_obj::generated::bpf_core_relo
  4578. pub aya_obj::generated::bpf_core_relo::access_str_off: core::ffi::c_uint
  4579. pub aya_obj::generated::bpf_core_relo::insn_off: core::ffi::c_uint
  4580. pub aya_obj::generated::bpf_core_relo::kind: aya_obj::generated::bpf_core_relo_kind::Type
  4581. pub aya_obj::generated::bpf_core_relo::type_id: core::ffi::c_uint
  4582. impl core::clone::Clone for aya_obj::generated::bpf_core_relo
  4583. pub fn aya_obj::generated::bpf_core_relo::clone(&self) -> aya_obj::generated::bpf_core_relo
  4584. impl core::fmt::Debug for aya_obj::generated::bpf_core_relo
  4585. pub fn aya_obj::generated::bpf_core_relo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4586. impl core::marker::Copy for aya_obj::generated::bpf_core_relo
  4587. impl core::marker::Freeze for aya_obj::generated::bpf_core_relo
  4588. impl core::marker::Send for aya_obj::generated::bpf_core_relo
  4589. impl core::marker::Sync for aya_obj::generated::bpf_core_relo
  4590. impl core::marker::Unpin for aya_obj::generated::bpf_core_relo
  4591. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_core_relo
  4592. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_core_relo
  4593. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_core_relo where U: core::convert::From<T>
  4594. pub fn aya_obj::generated::bpf_core_relo::into(self) -> U
  4595. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_core_relo where U: core::convert::Into<T>
  4596. pub type aya_obj::generated::bpf_core_relo::Error = core::convert::Infallible
  4597. pub fn aya_obj::generated::bpf_core_relo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4598. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_core_relo where U: core::convert::TryFrom<T>
  4599. pub type aya_obj::generated::bpf_core_relo::Error = <U as core::convert::TryFrom<T>>::Error
  4600. pub fn aya_obj::generated::bpf_core_relo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4601. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_core_relo where T: core::clone::Clone
  4602. pub type aya_obj::generated::bpf_core_relo::Owned = T
  4603. pub fn aya_obj::generated::bpf_core_relo::clone_into(&self, target: &mut T)
  4604. pub fn aya_obj::generated::bpf_core_relo::to_owned(&self) -> T
  4605. impl<T> core::any::Any for aya_obj::generated::bpf_core_relo where T: 'static + core::marker::Sized
  4606. pub fn aya_obj::generated::bpf_core_relo::type_id(&self) -> core::any::TypeId
  4607. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_core_relo where T: core::marker::Sized
  4608. pub fn aya_obj::generated::bpf_core_relo::borrow(&self) -> &T
  4609. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_core_relo where T: core::marker::Sized
  4610. pub fn aya_obj::generated::bpf_core_relo::borrow_mut(&mut self) -> &mut T
  4611. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_core_relo where T: core::clone::Clone
  4612. pub unsafe fn aya_obj::generated::bpf_core_relo::clone_to_uninit(&self, dst: *mut T)
  4613. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_core_relo where T: core::marker::Copy
  4614. pub unsafe fn aya_obj::generated::bpf_core_relo::clone_to_uninit(&self, dst: *mut T)
  4615. impl<T> core::convert::From<T> for aya_obj::generated::bpf_core_relo
  4616. pub fn aya_obj::generated::bpf_core_relo::from(t: T) -> T
  4617. #[repr(C)] pub struct aya_obj::generated::bpf_cpumap_val
  4618. pub aya_obj::generated::bpf_cpumap_val::bpf_prog: aya_obj::generated::bpf_cpumap_val__bindgen_ty_1
  4619. pub aya_obj::generated::bpf_cpumap_val::qsize: aya_obj::generated::__u32
  4620. impl core::clone::Clone for aya_obj::generated::bpf_cpumap_val
  4621. pub fn aya_obj::generated::bpf_cpumap_val::clone(&self) -> aya_obj::generated::bpf_cpumap_val
  4622. impl core::marker::Copy for aya_obj::generated::bpf_cpumap_val
  4623. impl core::marker::Freeze for aya_obj::generated::bpf_cpumap_val
  4624. impl core::marker::Send for aya_obj::generated::bpf_cpumap_val
  4625. impl core::marker::Sync for aya_obj::generated::bpf_cpumap_val
  4626. impl core::marker::Unpin for aya_obj::generated::bpf_cpumap_val
  4627. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_cpumap_val
  4628. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_cpumap_val
  4629. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_cpumap_val where U: core::convert::From<T>
  4630. pub fn aya_obj::generated::bpf_cpumap_val::into(self) -> U
  4631. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_cpumap_val where U: core::convert::Into<T>
  4632. pub type aya_obj::generated::bpf_cpumap_val::Error = core::convert::Infallible
  4633. pub fn aya_obj::generated::bpf_cpumap_val::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4634. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_cpumap_val where U: core::convert::TryFrom<T>
  4635. pub type aya_obj::generated::bpf_cpumap_val::Error = <U as core::convert::TryFrom<T>>::Error
  4636. pub fn aya_obj::generated::bpf_cpumap_val::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4637. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_cpumap_val where T: core::clone::Clone
  4638. pub type aya_obj::generated::bpf_cpumap_val::Owned = T
  4639. pub fn aya_obj::generated::bpf_cpumap_val::clone_into(&self, target: &mut T)
  4640. pub fn aya_obj::generated::bpf_cpumap_val::to_owned(&self) -> T
  4641. impl<T> core::any::Any for aya_obj::generated::bpf_cpumap_val where T: 'static + core::marker::Sized
  4642. pub fn aya_obj::generated::bpf_cpumap_val::type_id(&self) -> core::any::TypeId
  4643. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_cpumap_val where T: core::marker::Sized
  4644. pub fn aya_obj::generated::bpf_cpumap_val::borrow(&self) -> &T
  4645. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_cpumap_val where T: core::marker::Sized
  4646. pub fn aya_obj::generated::bpf_cpumap_val::borrow_mut(&mut self) -> &mut T
  4647. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_cpumap_val where T: core::clone::Clone
  4648. pub unsafe fn aya_obj::generated::bpf_cpumap_val::clone_to_uninit(&self, dst: *mut T)
  4649. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_cpumap_val where T: core::marker::Copy
  4650. pub unsafe fn aya_obj::generated::bpf_cpumap_val::clone_to_uninit(&self, dst: *mut T)
  4651. impl<T> core::convert::From<T> for aya_obj::generated::bpf_cpumap_val
  4652. pub fn aya_obj::generated::bpf_cpumap_val::from(t: T) -> T
  4653. #[repr(C)] pub struct aya_obj::generated::bpf_devmap_val
  4654. pub aya_obj::generated::bpf_devmap_val::bpf_prog: aya_obj::generated::bpf_devmap_val__bindgen_ty_1
  4655. pub aya_obj::generated::bpf_devmap_val::ifindex: aya_obj::generated::__u32
  4656. impl core::clone::Clone for aya_obj::generated::bpf_devmap_val
  4657. pub fn aya_obj::generated::bpf_devmap_val::clone(&self) -> aya_obj::generated::bpf_devmap_val
  4658. impl core::marker::Copy for aya_obj::generated::bpf_devmap_val
  4659. impl core::marker::Freeze for aya_obj::generated::bpf_devmap_val
  4660. impl core::marker::Send for aya_obj::generated::bpf_devmap_val
  4661. impl core::marker::Sync for aya_obj::generated::bpf_devmap_val
  4662. impl core::marker::Unpin for aya_obj::generated::bpf_devmap_val
  4663. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_devmap_val
  4664. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_devmap_val
  4665. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_devmap_val where U: core::convert::From<T>
  4666. pub fn aya_obj::generated::bpf_devmap_val::into(self) -> U
  4667. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_devmap_val where U: core::convert::Into<T>
  4668. pub type aya_obj::generated::bpf_devmap_val::Error = core::convert::Infallible
  4669. pub fn aya_obj::generated::bpf_devmap_val::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4670. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_devmap_val where U: core::convert::TryFrom<T>
  4671. pub type aya_obj::generated::bpf_devmap_val::Error = <U as core::convert::TryFrom<T>>::Error
  4672. pub fn aya_obj::generated::bpf_devmap_val::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4673. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_devmap_val where T: core::clone::Clone
  4674. pub type aya_obj::generated::bpf_devmap_val::Owned = T
  4675. pub fn aya_obj::generated::bpf_devmap_val::clone_into(&self, target: &mut T)
  4676. pub fn aya_obj::generated::bpf_devmap_val::to_owned(&self) -> T
  4677. impl<T> core::any::Any for aya_obj::generated::bpf_devmap_val where T: 'static + core::marker::Sized
  4678. pub fn aya_obj::generated::bpf_devmap_val::type_id(&self) -> core::any::TypeId
  4679. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_devmap_val where T: core::marker::Sized
  4680. pub fn aya_obj::generated::bpf_devmap_val::borrow(&self) -> &T
  4681. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_devmap_val where T: core::marker::Sized
  4682. pub fn aya_obj::generated::bpf_devmap_val::borrow_mut(&mut self) -> &mut T
  4683. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_devmap_val where T: core::clone::Clone
  4684. pub unsafe fn aya_obj::generated::bpf_devmap_val::clone_to_uninit(&self, dst: *mut T)
  4685. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_devmap_val where T: core::marker::Copy
  4686. pub unsafe fn aya_obj::generated::bpf_devmap_val::clone_to_uninit(&self, dst: *mut T)
  4687. impl<T> core::convert::From<T> for aya_obj::generated::bpf_devmap_val
  4688. pub fn aya_obj::generated::bpf_devmap_val::from(t: T) -> T
  4689. #[repr(C)] pub struct aya_obj::generated::bpf_func_info
  4690. pub aya_obj::generated::bpf_func_info::insn_off: aya_obj::generated::__u32
  4691. pub aya_obj::generated::bpf_func_info::type_id: aya_obj::generated::__u32
  4692. impl core::clone::Clone for aya_obj::generated::bpf_func_info
  4693. pub fn aya_obj::generated::bpf_func_info::clone(&self) -> aya_obj::generated::bpf_func_info
  4694. impl core::fmt::Debug for aya_obj::generated::bpf_func_info
  4695. pub fn aya_obj::generated::bpf_func_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4696. impl core::marker::Copy for aya_obj::generated::bpf_func_info
  4697. impl core::marker::Freeze for aya_obj::generated::bpf_func_info
  4698. impl core::marker::Send for aya_obj::generated::bpf_func_info
  4699. impl core::marker::Sync for aya_obj::generated::bpf_func_info
  4700. impl core::marker::Unpin for aya_obj::generated::bpf_func_info
  4701. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_func_info
  4702. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_func_info
  4703. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_func_info where U: core::convert::From<T>
  4704. pub fn aya_obj::generated::bpf_func_info::into(self) -> U
  4705. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_func_info where U: core::convert::Into<T>
  4706. pub type aya_obj::generated::bpf_func_info::Error = core::convert::Infallible
  4707. pub fn aya_obj::generated::bpf_func_info::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4708. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_func_info where U: core::convert::TryFrom<T>
  4709. pub type aya_obj::generated::bpf_func_info::Error = <U as core::convert::TryFrom<T>>::Error
  4710. pub fn aya_obj::generated::bpf_func_info::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4711. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_func_info where T: core::clone::Clone
  4712. pub type aya_obj::generated::bpf_func_info::Owned = T
  4713. pub fn aya_obj::generated::bpf_func_info::clone_into(&self, target: &mut T)
  4714. pub fn aya_obj::generated::bpf_func_info::to_owned(&self) -> T
  4715. impl<T> core::any::Any for aya_obj::generated::bpf_func_info where T: 'static + core::marker::Sized
  4716. pub fn aya_obj::generated::bpf_func_info::type_id(&self) -> core::any::TypeId
  4717. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_func_info where T: core::marker::Sized
  4718. pub fn aya_obj::generated::bpf_func_info::borrow(&self) -> &T
  4719. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_func_info where T: core::marker::Sized
  4720. pub fn aya_obj::generated::bpf_func_info::borrow_mut(&mut self) -> &mut T
  4721. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_func_info where T: core::clone::Clone
  4722. pub unsafe fn aya_obj::generated::bpf_func_info::clone_to_uninit(&self, dst: *mut T)
  4723. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_func_info where T: core::marker::Copy
  4724. pub unsafe fn aya_obj::generated::bpf_func_info::clone_to_uninit(&self, dst: *mut T)
  4725. impl<T> core::convert::From<T> for aya_obj::generated::bpf_func_info
  4726. pub fn aya_obj::generated::bpf_func_info::from(t: T) -> T
  4727. #[repr(C)] pub struct aya_obj::generated::bpf_insn
  4728. pub aya_obj::generated::bpf_insn::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 1]>
  4729. pub aya_obj::generated::bpf_insn::_bitfield_align_1: [u8; 0]
  4730. pub aya_obj::generated::bpf_insn::code: aya_obj::generated::__u8
  4731. pub aya_obj::generated::bpf_insn::imm: aya_obj::generated::__s32
  4732. pub aya_obj::generated::bpf_insn::off: aya_obj::generated::__s16
  4733. impl aya_obj::generated::bpf_insn
  4734. pub fn aya_obj::generated::bpf_insn::dst_reg(&self) -> aya_obj::generated::__u8
  4735. pub fn aya_obj::generated::bpf_insn::new_bitfield_1(dst_reg: aya_obj::generated::__u8, src_reg: aya_obj::generated::__u8) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 1]>
  4736. pub fn aya_obj::generated::bpf_insn::set_dst_reg(&mut self, val: aya_obj::generated::__u8)
  4737. pub fn aya_obj::generated::bpf_insn::set_src_reg(&mut self, val: aya_obj::generated::__u8)
  4738. pub fn aya_obj::generated::bpf_insn::src_reg(&self) -> aya_obj::generated::__u8
  4739. impl core::clone::Clone for aya_obj::generated::bpf_insn
  4740. pub fn aya_obj::generated::bpf_insn::clone(&self) -> aya_obj::generated::bpf_insn
  4741. impl core::fmt::Debug for aya_obj::generated::bpf_insn
  4742. pub fn aya_obj::generated::bpf_insn::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4743. impl core::marker::Copy for aya_obj::generated::bpf_insn
  4744. impl core::marker::Freeze for aya_obj::generated::bpf_insn
  4745. impl core::marker::Send for aya_obj::generated::bpf_insn
  4746. impl core::marker::Sync for aya_obj::generated::bpf_insn
  4747. impl core::marker::Unpin for aya_obj::generated::bpf_insn
  4748. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_insn
  4749. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_insn
  4750. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_insn where U: core::convert::From<T>
  4751. pub fn aya_obj::generated::bpf_insn::into(self) -> U
  4752. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_insn where U: core::convert::Into<T>
  4753. pub type aya_obj::generated::bpf_insn::Error = core::convert::Infallible
  4754. pub fn aya_obj::generated::bpf_insn::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4755. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_insn where U: core::convert::TryFrom<T>
  4756. pub type aya_obj::generated::bpf_insn::Error = <U as core::convert::TryFrom<T>>::Error
  4757. pub fn aya_obj::generated::bpf_insn::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4758. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_insn where T: core::clone::Clone
  4759. pub type aya_obj::generated::bpf_insn::Owned = T
  4760. pub fn aya_obj::generated::bpf_insn::clone_into(&self, target: &mut T)
  4761. pub fn aya_obj::generated::bpf_insn::to_owned(&self) -> T
  4762. impl<T> core::any::Any for aya_obj::generated::bpf_insn where T: 'static + core::marker::Sized
  4763. pub fn aya_obj::generated::bpf_insn::type_id(&self) -> core::any::TypeId
  4764. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_insn where T: core::marker::Sized
  4765. pub fn aya_obj::generated::bpf_insn::borrow(&self) -> &T
  4766. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_insn where T: core::marker::Sized
  4767. pub fn aya_obj::generated::bpf_insn::borrow_mut(&mut self) -> &mut T
  4768. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_insn where T: core::clone::Clone
  4769. pub unsafe fn aya_obj::generated::bpf_insn::clone_to_uninit(&self, dst: *mut T)
  4770. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_insn where T: core::marker::Copy
  4771. pub unsafe fn aya_obj::generated::bpf_insn::clone_to_uninit(&self, dst: *mut T)
  4772. impl<T> core::convert::From<T> for aya_obj::generated::bpf_insn
  4773. pub fn aya_obj::generated::bpf_insn::from(t: T) -> T
  4774. #[repr(C)] pub struct aya_obj::generated::bpf_line_info
  4775. pub aya_obj::generated::bpf_line_info::file_name_off: aya_obj::generated::__u32
  4776. pub aya_obj::generated::bpf_line_info::insn_off: aya_obj::generated::__u32
  4777. pub aya_obj::generated::bpf_line_info::line_col: aya_obj::generated::__u32
  4778. pub aya_obj::generated::bpf_line_info::line_off: aya_obj::generated::__u32
  4779. impl core::clone::Clone for aya_obj::generated::bpf_line_info
  4780. pub fn aya_obj::generated::bpf_line_info::clone(&self) -> aya_obj::generated::bpf_line_info
  4781. impl core::fmt::Debug for aya_obj::generated::bpf_line_info
  4782. pub fn aya_obj::generated::bpf_line_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4783. impl core::marker::Copy for aya_obj::generated::bpf_line_info
  4784. impl core::marker::Freeze for aya_obj::generated::bpf_line_info
  4785. impl core::marker::Send for aya_obj::generated::bpf_line_info
  4786. impl core::marker::Sync for aya_obj::generated::bpf_line_info
  4787. impl core::marker::Unpin for aya_obj::generated::bpf_line_info
  4788. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_line_info
  4789. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_line_info
  4790. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_line_info where U: core::convert::From<T>
  4791. pub fn aya_obj::generated::bpf_line_info::into(self) -> U
  4792. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_line_info where U: core::convert::Into<T>
  4793. pub type aya_obj::generated::bpf_line_info::Error = core::convert::Infallible
  4794. pub fn aya_obj::generated::bpf_line_info::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4795. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_line_info where U: core::convert::TryFrom<T>
  4796. pub type aya_obj::generated::bpf_line_info::Error = <U as core::convert::TryFrom<T>>::Error
  4797. pub fn aya_obj::generated::bpf_line_info::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4798. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_line_info where T: core::clone::Clone
  4799. pub type aya_obj::generated::bpf_line_info::Owned = T
  4800. pub fn aya_obj::generated::bpf_line_info::clone_into(&self, target: &mut T)
  4801. pub fn aya_obj::generated::bpf_line_info::to_owned(&self) -> T
  4802. impl<T> core::any::Any for aya_obj::generated::bpf_line_info where T: 'static + core::marker::Sized
  4803. pub fn aya_obj::generated::bpf_line_info::type_id(&self) -> core::any::TypeId
  4804. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_line_info where T: core::marker::Sized
  4805. pub fn aya_obj::generated::bpf_line_info::borrow(&self) -> &T
  4806. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_line_info where T: core::marker::Sized
  4807. pub fn aya_obj::generated::bpf_line_info::borrow_mut(&mut self) -> &mut T
  4808. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_line_info where T: core::clone::Clone
  4809. pub unsafe fn aya_obj::generated::bpf_line_info::clone_to_uninit(&self, dst: *mut T)
  4810. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_line_info where T: core::marker::Copy
  4811. pub unsafe fn aya_obj::generated::bpf_line_info::clone_to_uninit(&self, dst: *mut T)
  4812. impl<T> core::convert::From<T> for aya_obj::generated::bpf_line_info
  4813. pub fn aya_obj::generated::bpf_line_info::from(t: T) -> T
  4814. #[repr(C)] pub struct aya_obj::generated::bpf_link_info
  4815. pub aya_obj::generated::bpf_link_info::__bindgen_anon_1: aya_obj::generated::bpf_link_info__bindgen_ty_1
  4816. pub aya_obj::generated::bpf_link_info::id: aya_obj::generated::__u32
  4817. pub aya_obj::generated::bpf_link_info::prog_id: aya_obj::generated::__u32
  4818. pub aya_obj::generated::bpf_link_info::type_: aya_obj::generated::__u32
  4819. impl core::clone::Clone for aya_obj::generated::bpf_link_info
  4820. pub fn aya_obj::generated::bpf_link_info::clone(&self) -> aya_obj::generated::bpf_link_info
  4821. impl core::marker::Copy for aya_obj::generated::bpf_link_info
  4822. impl core::marker::Freeze for aya_obj::generated::bpf_link_info
  4823. impl core::marker::Send for aya_obj::generated::bpf_link_info
  4824. impl core::marker::Sync for aya_obj::generated::bpf_link_info
  4825. impl core::marker::Unpin for aya_obj::generated::bpf_link_info
  4826. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info
  4827. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info
  4828. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info where U: core::convert::From<T>
  4829. pub fn aya_obj::generated::bpf_link_info::into(self) -> U
  4830. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info where U: core::convert::Into<T>
  4831. pub type aya_obj::generated::bpf_link_info::Error = core::convert::Infallible
  4832. pub fn aya_obj::generated::bpf_link_info::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4833. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info where U: core::convert::TryFrom<T>
  4834. pub type aya_obj::generated::bpf_link_info::Error = <U as core::convert::TryFrom<T>>::Error
  4835. pub fn aya_obj::generated::bpf_link_info::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4836. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info where T: core::clone::Clone
  4837. pub type aya_obj::generated::bpf_link_info::Owned = T
  4838. pub fn aya_obj::generated::bpf_link_info::clone_into(&self, target: &mut T)
  4839. pub fn aya_obj::generated::bpf_link_info::to_owned(&self) -> T
  4840. impl<T> core::any::Any for aya_obj::generated::bpf_link_info where T: 'static + core::marker::Sized
  4841. pub fn aya_obj::generated::bpf_link_info::type_id(&self) -> core::any::TypeId
  4842. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info where T: core::marker::Sized
  4843. pub fn aya_obj::generated::bpf_link_info::borrow(&self) -> &T
  4844. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info where T: core::marker::Sized
  4845. pub fn aya_obj::generated::bpf_link_info::borrow_mut(&mut self) -> &mut T
  4846. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info where T: core::clone::Clone
  4847. pub unsafe fn aya_obj::generated::bpf_link_info::clone_to_uninit(&self, dst: *mut T)
  4848. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info where T: core::marker::Copy
  4849. pub unsafe fn aya_obj::generated::bpf_link_info::clone_to_uninit(&self, dst: *mut T)
  4850. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info
  4851. pub fn aya_obj::generated::bpf_link_info::from(t: T) -> T
  4852. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4853. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::tp_name: aya_obj::generated::__u64
  4854. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::tp_name_len: aya_obj::generated::__u32
  4855. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4856. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4857. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4858. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4859. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4860. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4861. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4862. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4863. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4864. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4865. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4866. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From<T>
  4867. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::into(self) -> U
  4868. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into<T>
  4869. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible
  4870. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4871. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom<T>
  4872. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  4873. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4874. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  4875. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::Owned = T
  4876. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::clone_into(&self, target: &mut T)
  4877. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::to_owned(&self) -> T
  4878. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized
  4879. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  4880. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  4881. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T
  4882. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  4883. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  4884. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  4885. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  4886. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Copy
  4887. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  4888. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1
  4889. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T
  4890. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4891. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::cookies: aya_obj::generated::__u64
  4892. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::count: aya_obj::generated::__u32
  4893. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::flags: aya_obj::generated::__u32
  4894. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::offsets: aya_obj::generated::__u64
  4895. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::path: aya_obj::generated::__u64
  4896. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::path_size: aya_obj::generated::__u32
  4897. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::pid: aya_obj::generated::__u32
  4898. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::ref_ctr_offsets: aya_obj::generated::__u64
  4899. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4900. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4901. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4902. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4903. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4904. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4905. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4906. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4907. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4908. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4909. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4910. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where U: core::convert::From<T>
  4911. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::into(self) -> U
  4912. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where U: core::convert::Into<T>
  4913. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::Error = core::convert::Infallible
  4914. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4915. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where U: core::convert::TryFrom<T>
  4916. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::Error = <U as core::convert::TryFrom<T>>::Error
  4917. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4918. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where T: core::clone::Clone
  4919. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::Owned = T
  4920. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::clone_into(&self, target: &mut T)
  4921. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::to_owned(&self) -> T
  4922. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where T: 'static + core::marker::Sized
  4923. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::type_id(&self) -> core::any::TypeId
  4924. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where T: core::marker::Sized
  4925. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::borrow(&self) -> &T
  4926. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where T: core::marker::Sized
  4927. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::borrow_mut(&mut self) -> &mut T
  4928. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where T: core::clone::Clone
  4929. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::clone_to_uninit(&self, dst: *mut T)
  4930. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10 where T: core::marker::Copy
  4931. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::clone_to_uninit(&self, dst: *mut T)
  4932. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10
  4933. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_10::from(t: T) -> T
  4934. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4935. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::__bindgen_anon_1: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1
  4936. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  4937. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::_bitfield_align_1: [u8; 0]
  4938. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::type_: aya_obj::generated::__u32
  4939. impl aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4940. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::new_bitfield_1() -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  4941. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4942. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4943. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4944. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4945. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4946. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4947. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4948. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4949. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4950. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where U: core::convert::From<T>
  4951. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::into(self) -> U
  4952. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where U: core::convert::Into<T>
  4953. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::Error = core::convert::Infallible
  4954. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4955. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where U: core::convert::TryFrom<T>
  4956. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::Error = <U as core::convert::TryFrom<T>>::Error
  4957. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4958. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where T: core::clone::Clone
  4959. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::Owned = T
  4960. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::clone_into(&self, target: &mut T)
  4961. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::to_owned(&self) -> T
  4962. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where T: 'static + core::marker::Sized
  4963. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::type_id(&self) -> core::any::TypeId
  4964. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where T: core::marker::Sized
  4965. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::borrow(&self) -> &T
  4966. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where T: core::marker::Sized
  4967. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::borrow_mut(&mut self) -> &mut T
  4968. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where T: core::clone::Clone
  4969. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::clone_to_uninit(&self, dst: *mut T)
  4970. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11 where T: core::marker::Copy
  4971. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::clone_to_uninit(&self, dst: *mut T)
  4972. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11
  4973. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11::from(t: T) -> T
  4974. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4975. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::cookie: aya_obj::generated::__u64
  4976. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::file_name: aya_obj::generated::__u64
  4977. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::name_len: aya_obj::generated::__u32
  4978. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::offset: aya_obj::generated::__u32
  4979. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4980. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4981. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4982. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4983. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4984. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4985. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4986. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4987. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4988. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4989. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  4990. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From<T>
  4991. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::into(self) -> U
  4992. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into<T>
  4993. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible
  4994. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4995. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom<T>
  4996. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  4997. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4998. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  4999. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::Owned = T
  5000. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::clone_into(&self, target: &mut T)
  5001. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::to_owned(&self) -> T
  5002. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized
  5003. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  5004. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  5005. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T
  5006. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  5007. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  5008. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  5009. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  5010. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Copy
  5011. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  5012. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1
  5013. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T
  5014. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5015. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::addr: aya_obj::generated::__u64
  5016. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::cookie: aya_obj::generated::__u64
  5017. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::func_name: aya_obj::generated::__u64
  5018. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::missed: aya_obj::generated::__u64
  5019. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::name_len: aya_obj::generated::__u32
  5020. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::offset: aya_obj::generated::__u32
  5021. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5022. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5023. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5024. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5025. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5026. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5027. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5028. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5029. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5030. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5031. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5032. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where U: core::convert::From<T>
  5033. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::into(self) -> U
  5034. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where U: core::convert::Into<T>
  5035. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::Error = core::convert::Infallible
  5036. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5037. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where U: core::convert::TryFrom<T>
  5038. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  5039. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5040. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where T: core::clone::Clone
  5041. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::Owned = T
  5042. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::clone_into(&self, target: &mut T)
  5043. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::to_owned(&self) -> T
  5044. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where T: 'static + core::marker::Sized
  5045. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  5046. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized
  5047. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::borrow(&self) -> &T
  5048. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized
  5049. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  5050. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where T: core::clone::Clone
  5051. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  5052. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Copy
  5053. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  5054. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2
  5055. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2::from(t: T) -> T
  5056. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5057. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  5058. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::_bitfield_align_1: [u8; 0]
  5059. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::cookie: aya_obj::generated::__u64
  5060. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::name_len: aya_obj::generated::__u32
  5061. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::tp_name: aya_obj::generated::__u64
  5062. impl aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5063. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::new_bitfield_1() -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  5064. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5065. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5066. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5067. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5068. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5069. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5070. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5071. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5072. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5073. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5074. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5075. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where U: core::convert::From<T>
  5076. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::into(self) -> U
  5077. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where U: core::convert::Into<T>
  5078. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::Error = core::convert::Infallible
  5079. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5080. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where U: core::convert::TryFrom<T>
  5081. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::Error = <U as core::convert::TryFrom<T>>::Error
  5082. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5083. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where T: core::clone::Clone
  5084. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::Owned = T
  5085. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::clone_into(&self, target: &mut T)
  5086. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::to_owned(&self) -> T
  5087. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where T: 'static + core::marker::Sized
  5088. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::type_id(&self) -> core::any::TypeId
  5089. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized
  5090. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::borrow(&self) -> &T
  5091. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized
  5092. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::borrow_mut(&mut self) -> &mut T
  5093. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where T: core::clone::Clone
  5094. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  5095. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Copy
  5096. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  5097. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3
  5098. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3::from(t: T) -> T
  5099. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5100. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  5101. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::_bitfield_align_1: [u8; 0]
  5102. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::config: aya_obj::generated::__u64
  5103. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::cookie: aya_obj::generated::__u64
  5104. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::type_: aya_obj::generated::__u32
  5105. impl aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5106. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::new_bitfield_1() -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  5107. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5108. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5109. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5110. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5111. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5112. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5113. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5114. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5115. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5116. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5117. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5118. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where U: core::convert::From<T>
  5119. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::into(self) -> U
  5120. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where U: core::convert::Into<T>
  5121. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::Error = core::convert::Infallible
  5122. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5123. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where U: core::convert::TryFrom<T>
  5124. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::Error = <U as core::convert::TryFrom<T>>::Error
  5125. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5126. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where T: core::clone::Clone
  5127. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::Owned = T
  5128. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::clone_into(&self, target: &mut T)
  5129. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::to_owned(&self) -> T
  5130. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where T: 'static + core::marker::Sized
  5131. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::type_id(&self) -> core::any::TypeId
  5132. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized
  5133. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::borrow(&self) -> &T
  5134. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized
  5135. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::borrow_mut(&mut self) -> &mut T
  5136. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where T: core::clone::Clone
  5137. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  5138. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Copy
  5139. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  5140. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4
  5141. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4::from(t: T) -> T
  5142. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5143. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::attach_type: aya_obj::generated::__u32
  5144. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::ifindex: aya_obj::generated::__u32
  5145. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5146. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5147. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5148. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5149. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5150. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5151. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5152. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5153. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5154. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5155. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5156. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where U: core::convert::From<T>
  5157. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::into(self) -> U
  5158. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where U: core::convert::Into<T>
  5159. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::Error = core::convert::Infallible
  5160. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5161. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where U: core::convert::TryFrom<T>
  5162. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::Error = <U as core::convert::TryFrom<T>>::Error
  5163. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5164. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where T: core::clone::Clone
  5165. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::Owned = T
  5166. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::clone_into(&self, target: &mut T)
  5167. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::to_owned(&self) -> T
  5168. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where T: 'static + core::marker::Sized
  5169. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::type_id(&self) -> core::any::TypeId
  5170. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where T: core::marker::Sized
  5171. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::borrow(&self) -> &T
  5172. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where T: core::marker::Sized
  5173. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::borrow_mut(&mut self) -> &mut T
  5174. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where T: core::clone::Clone
  5175. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::clone_to_uninit(&self, dst: *mut T)
  5176. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12 where T: core::marker::Copy
  5177. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::clone_to_uninit(&self, dst: *mut T)
  5178. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12
  5179. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_12::from(t: T) -> T
  5180. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5181. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::attach_type: aya_obj::generated::__u32
  5182. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::ifindex: aya_obj::generated::__u32
  5183. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5184. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5185. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5186. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5187. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5188. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5189. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5190. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5191. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5192. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5193. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5194. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where U: core::convert::From<T>
  5195. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::into(self) -> U
  5196. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where U: core::convert::Into<T>
  5197. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::Error = core::convert::Infallible
  5198. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5199. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where U: core::convert::TryFrom<T>
  5200. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::Error = <U as core::convert::TryFrom<T>>::Error
  5201. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5202. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where T: core::clone::Clone
  5203. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::Owned = T
  5204. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::clone_into(&self, target: &mut T)
  5205. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::to_owned(&self) -> T
  5206. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where T: 'static + core::marker::Sized
  5207. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::type_id(&self) -> core::any::TypeId
  5208. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where T: core::marker::Sized
  5209. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::borrow(&self) -> &T
  5210. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where T: core::marker::Sized
  5211. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::borrow_mut(&mut self) -> &mut T
  5212. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where T: core::clone::Clone
  5213. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::clone_to_uninit(&self, dst: *mut T)
  5214. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13 where T: core::marker::Copy
  5215. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::clone_to_uninit(&self, dst: *mut T)
  5216. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13
  5217. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_13::from(t: T) -> T
  5218. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5219. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::attach_type: aya_obj::generated::__u32
  5220. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::target_btf_id: aya_obj::generated::__u32
  5221. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::target_obj_id: aya_obj::generated::__u32
  5222. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5223. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5224. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5225. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5226. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5227. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5228. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5229. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5230. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5231. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5232. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5233. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::From<T>
  5234. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::into(self) -> U
  5235. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::Into<T>
  5236. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Error = core::convert::Infallible
  5237. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5238. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where U: core::convert::TryFrom<T>
  5239. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  5240. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5241. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::clone::Clone
  5242. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::Owned = T
  5243. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::clone_into(&self, target: &mut T)
  5244. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::to_owned(&self) -> T
  5245. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: 'static + core::marker::Sized
  5246. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  5247. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized
  5248. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::borrow(&self) -> &T
  5249. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Sized
  5250. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  5251. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::clone::Clone
  5252. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  5253. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2 where T: core::marker::Copy
  5254. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  5255. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2
  5256. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_2::from(t: T) -> T
  5257. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5258. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::attach_type: aya_obj::generated::__u32
  5259. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::cgroup_id: aya_obj::generated::__u64
  5260. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5261. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5262. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5263. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5264. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5265. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5266. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5267. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5268. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5269. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5270. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5271. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::From<T>
  5272. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::into(self) -> U
  5273. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::Into<T>
  5274. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Error = core::convert::Infallible
  5275. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5276. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where U: core::convert::TryFrom<T>
  5277. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Error = <U as core::convert::TryFrom<T>>::Error
  5278. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5279. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::clone::Clone
  5280. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::Owned = T
  5281. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::clone_into(&self, target: &mut T)
  5282. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::to_owned(&self) -> T
  5283. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: 'static + core::marker::Sized
  5284. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::type_id(&self) -> core::any::TypeId
  5285. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized
  5286. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::borrow(&self) -> &T
  5287. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Sized
  5288. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::borrow_mut(&mut self) -> &mut T
  5289. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::clone::Clone
  5290. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  5291. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3 where T: core::marker::Copy
  5292. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::clone_to_uninit(&self, dst: *mut T)
  5293. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3
  5294. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_3::from(t: T) -> T
  5295. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5296. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::__bindgen_anon_1: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1
  5297. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::__bindgen_anon_2: aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2
  5298. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::target_name: aya_obj::generated::__u64
  5299. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::target_name_len: aya_obj::generated::__u32
  5300. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5301. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5302. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5303. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5304. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5305. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5306. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5307. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5308. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5309. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::From<T>
  5310. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::into(self) -> U
  5311. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::Into<T>
  5312. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Error = core::convert::Infallible
  5313. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5314. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where U: core::convert::TryFrom<T>
  5315. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Error = <U as core::convert::TryFrom<T>>::Error
  5316. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5317. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::clone::Clone
  5318. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::Owned = T
  5319. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::clone_into(&self, target: &mut T)
  5320. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::to_owned(&self) -> T
  5321. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: 'static + core::marker::Sized
  5322. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::type_id(&self) -> core::any::TypeId
  5323. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized
  5324. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::borrow(&self) -> &T
  5325. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Sized
  5326. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::borrow_mut(&mut self) -> &mut T
  5327. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::clone::Clone
  5328. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  5329. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4 where T: core::marker::Copy
  5330. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::clone_to_uninit(&self, dst: *mut T)
  5331. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4
  5332. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4::from(t: T) -> T
  5333. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5334. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::map_id: aya_obj::generated::__u32
  5335. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5336. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5337. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5338. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5339. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5340. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5341. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5342. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5343. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5344. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5345. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5346. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From<T>
  5347. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::into(self) -> U
  5348. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into<T>
  5349. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible
  5350. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5351. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom<T>
  5352. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  5353. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5354. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  5355. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::Owned = T
  5356. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::clone_into(&self, target: &mut T)
  5357. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::to_owned(&self) -> T
  5358. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized
  5359. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  5360. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  5361. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T
  5362. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  5363. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  5364. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  5365. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  5366. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Copy
  5367. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  5368. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1
  5369. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T
  5370. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5371. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::cgroup_id: aya_obj::generated::__u64
  5372. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::order: aya_obj::generated::__u32
  5373. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5374. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5375. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5376. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5377. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5378. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5379. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5380. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5381. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5382. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5383. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5384. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::From<T>
  5385. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::into(self) -> U
  5386. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::Into<T>
  5387. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Error = core::convert::Infallible
  5388. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5389. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where U: core::convert::TryFrom<T>
  5390. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  5391. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5392. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::clone::Clone
  5393. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::Owned = T
  5394. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::clone_into(&self, target: &mut T)
  5395. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::to_owned(&self) -> T
  5396. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: 'static + core::marker::Sized
  5397. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  5398. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized
  5399. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::borrow(&self) -> &T
  5400. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Sized
  5401. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  5402. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::clone::Clone
  5403. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  5404. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 where T: core::marker::Copy
  5405. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  5406. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1
  5407. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1::from(t: T) -> T
  5408. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5409. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::pid: aya_obj::generated::__u32
  5410. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::tid: aya_obj::generated::__u32
  5411. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5412. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5413. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5414. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5415. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5416. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5417. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5418. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5419. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5420. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5421. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5422. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::From<T>
  5423. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::into(self) -> U
  5424. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::Into<T>
  5425. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Error = core::convert::Infallible
  5426. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5427. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where U: core::convert::TryFrom<T>
  5428. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Error = <U as core::convert::TryFrom<T>>::Error
  5429. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5430. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::clone::Clone
  5431. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::Owned = T
  5432. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::clone_into(&self, target: &mut T)
  5433. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::to_owned(&self) -> T
  5434. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: 'static + core::marker::Sized
  5435. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::type_id(&self) -> core::any::TypeId
  5436. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::marker::Sized
  5437. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::borrow(&self) -> &T
  5438. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::marker::Sized
  5439. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::borrow_mut(&mut self) -> &mut T
  5440. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::clone::Clone
  5441. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  5442. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 where T: core::marker::Copy
  5443. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::clone_to_uninit(&self, dst: *mut T)
  5444. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2
  5445. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2::from(t: T) -> T
  5446. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5447. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::attach_type: aya_obj::generated::__u32
  5448. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::netns_ino: aya_obj::generated::__u32
  5449. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5450. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5451. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5452. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5453. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5454. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5455. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5456. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5457. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5458. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5459. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5460. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::From<T>
  5461. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::into(self) -> U
  5462. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::Into<T>
  5463. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Error = core::convert::Infallible
  5464. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5465. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where U: core::convert::TryFrom<T>
  5466. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Error = <U as core::convert::TryFrom<T>>::Error
  5467. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5468. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::clone::Clone
  5469. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::Owned = T
  5470. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::clone_into(&self, target: &mut T)
  5471. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::to_owned(&self) -> T
  5472. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: 'static + core::marker::Sized
  5473. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::type_id(&self) -> core::any::TypeId
  5474. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::marker::Sized
  5475. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::borrow(&self) -> &T
  5476. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::marker::Sized
  5477. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::borrow_mut(&mut self) -> &mut T
  5478. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::clone::Clone
  5479. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::clone_to_uninit(&self, dst: *mut T)
  5480. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5 where T: core::marker::Copy
  5481. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::clone_to_uninit(&self, dst: *mut T)
  5482. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5
  5483. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_5::from(t: T) -> T
  5484. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5485. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::ifindex: aya_obj::generated::__u32
  5486. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5487. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5488. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5489. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5490. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5491. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5492. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5493. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5494. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5495. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5496. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5497. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::From<T>
  5498. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::into(self) -> U
  5499. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::Into<T>
  5500. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Error = core::convert::Infallible
  5501. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5502. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where U: core::convert::TryFrom<T>
  5503. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Error = <U as core::convert::TryFrom<T>>::Error
  5504. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5505. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::clone::Clone
  5506. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::Owned = T
  5507. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::clone_into(&self, target: &mut T)
  5508. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::to_owned(&self) -> T
  5509. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: 'static + core::marker::Sized
  5510. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::type_id(&self) -> core::any::TypeId
  5511. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::marker::Sized
  5512. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::borrow(&self) -> &T
  5513. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::marker::Sized
  5514. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::borrow_mut(&mut self) -> &mut T
  5515. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::clone::Clone
  5516. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::clone_to_uninit(&self, dst: *mut T)
  5517. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6 where T: core::marker::Copy
  5518. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::clone_to_uninit(&self, dst: *mut T)
  5519. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6
  5520. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_6::from(t: T) -> T
  5521. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5522. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::map_id: aya_obj::generated::__u32
  5523. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5524. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5525. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5526. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5527. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5528. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5529. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5530. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5531. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5532. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5533. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5534. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::From<T>
  5535. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::into(self) -> U
  5536. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::Into<T>
  5537. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Error = core::convert::Infallible
  5538. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5539. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where U: core::convert::TryFrom<T>
  5540. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Error = <U as core::convert::TryFrom<T>>::Error
  5541. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5542. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::clone::Clone
  5543. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::Owned = T
  5544. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::clone_into(&self, target: &mut T)
  5545. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::to_owned(&self) -> T
  5546. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: 'static + core::marker::Sized
  5547. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::type_id(&self) -> core::any::TypeId
  5548. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::marker::Sized
  5549. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::borrow(&self) -> &T
  5550. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::marker::Sized
  5551. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::borrow_mut(&mut self) -> &mut T
  5552. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::clone::Clone
  5553. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::clone_to_uninit(&self, dst: *mut T)
  5554. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7 where T: core::marker::Copy
  5555. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::clone_to_uninit(&self, dst: *mut T)
  5556. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7
  5557. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_7::from(t: T) -> T
  5558. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5559. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::flags: aya_obj::generated::__u32
  5560. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::hooknum: aya_obj::generated::__u32
  5561. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::pf: aya_obj::generated::__u32
  5562. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::priority: aya_obj::generated::__s32
  5563. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5564. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5565. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5566. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5567. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5568. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5569. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5570. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5571. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5572. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5573. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5574. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::From<T>
  5575. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::into(self) -> U
  5576. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::Into<T>
  5577. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Error = core::convert::Infallible
  5578. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5579. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where U: core::convert::TryFrom<T>
  5580. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Error = <U as core::convert::TryFrom<T>>::Error
  5581. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5582. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::clone::Clone
  5583. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::Owned = T
  5584. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::clone_into(&self, target: &mut T)
  5585. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::to_owned(&self) -> T
  5586. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: 'static + core::marker::Sized
  5587. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::type_id(&self) -> core::any::TypeId
  5588. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::marker::Sized
  5589. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::borrow(&self) -> &T
  5590. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::marker::Sized
  5591. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::borrow_mut(&mut self) -> &mut T
  5592. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::clone::Clone
  5593. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::clone_to_uninit(&self, dst: *mut T)
  5594. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8 where T: core::marker::Copy
  5595. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::clone_to_uninit(&self, dst: *mut T)
  5596. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8
  5597. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_8::from(t: T) -> T
  5598. #[repr(C)] pub struct aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5599. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::addrs: aya_obj::generated::__u64
  5600. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::cookies: aya_obj::generated::__u64
  5601. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::count: aya_obj::generated::__u32
  5602. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::flags: aya_obj::generated::__u32
  5603. pub aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::missed: aya_obj::generated::__u64
  5604. impl core::clone::Clone for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5605. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::clone(&self) -> aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5606. impl core::fmt::Debug for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5607. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5608. impl core::marker::Copy for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5609. impl core::marker::Freeze for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5610. impl core::marker::Send for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5611. impl core::marker::Sync for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5612. impl core::marker::Unpin for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5613. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5614. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5615. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where U: core::convert::From<T>
  5616. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::into(self) -> U
  5617. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where U: core::convert::Into<T>
  5618. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::Error = core::convert::Infallible
  5619. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5620. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where U: core::convert::TryFrom<T>
  5621. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::Error = <U as core::convert::TryFrom<T>>::Error
  5622. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5623. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where T: core::clone::Clone
  5624. pub type aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::Owned = T
  5625. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::clone_into(&self, target: &mut T)
  5626. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::to_owned(&self) -> T
  5627. impl<T> core::any::Any for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where T: 'static + core::marker::Sized
  5628. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::type_id(&self) -> core::any::TypeId
  5629. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where T: core::marker::Sized
  5630. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::borrow(&self) -> &T
  5631. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where T: core::marker::Sized
  5632. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::borrow_mut(&mut self) -> &mut T
  5633. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where T: core::clone::Clone
  5634. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::clone_to_uninit(&self, dst: *mut T)
  5635. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9 where T: core::marker::Copy
  5636. pub unsafe fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::clone_to_uninit(&self, dst: *mut T)
  5637. impl<T> core::convert::From<T> for aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9
  5638. pub fn aya_obj::generated::bpf_link_info__bindgen_ty_1__bindgen_ty_9::from(t: T) -> T
  5639. #[repr(C)] pub struct aya_obj::generated::bpf_lpm_trie_key
  5640. pub aya_obj::generated::bpf_lpm_trie_key::data: aya_obj::generated::__IncompleteArrayField<aya_obj::generated::__u8>
  5641. pub aya_obj::generated::bpf_lpm_trie_key::prefixlen: aya_obj::generated::__u32
  5642. impl core::fmt::Debug for aya_obj::generated::bpf_lpm_trie_key
  5643. pub fn aya_obj::generated::bpf_lpm_trie_key::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5644. impl core::marker::Freeze for aya_obj::generated::bpf_lpm_trie_key
  5645. impl core::marker::Send for aya_obj::generated::bpf_lpm_trie_key
  5646. impl core::marker::Sync for aya_obj::generated::bpf_lpm_trie_key
  5647. impl core::marker::Unpin for aya_obj::generated::bpf_lpm_trie_key
  5648. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_lpm_trie_key
  5649. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_lpm_trie_key
  5650. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_lpm_trie_key where U: core::convert::From<T>
  5651. pub fn aya_obj::generated::bpf_lpm_trie_key::into(self) -> U
  5652. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_lpm_trie_key where U: core::convert::Into<T>
  5653. pub type aya_obj::generated::bpf_lpm_trie_key::Error = core::convert::Infallible
  5654. pub fn aya_obj::generated::bpf_lpm_trie_key::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5655. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_lpm_trie_key where U: core::convert::TryFrom<T>
  5656. pub type aya_obj::generated::bpf_lpm_trie_key::Error = <U as core::convert::TryFrom<T>>::Error
  5657. pub fn aya_obj::generated::bpf_lpm_trie_key::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5658. impl<T> core::any::Any for aya_obj::generated::bpf_lpm_trie_key where T: 'static + core::marker::Sized
  5659. pub fn aya_obj::generated::bpf_lpm_trie_key::type_id(&self) -> core::any::TypeId
  5660. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_lpm_trie_key where T: core::marker::Sized
  5661. pub fn aya_obj::generated::bpf_lpm_trie_key::borrow(&self) -> &T
  5662. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_lpm_trie_key where T: core::marker::Sized
  5663. pub fn aya_obj::generated::bpf_lpm_trie_key::borrow_mut(&mut self) -> &mut T
  5664. impl<T> core::convert::From<T> for aya_obj::generated::bpf_lpm_trie_key
  5665. pub fn aya_obj::generated::bpf_lpm_trie_key::from(t: T) -> T
  5666. #[repr(C)] pub struct aya_obj::generated::bpf_map_info
  5667. pub aya_obj::generated::bpf_map_info::btf_id: aya_obj::generated::__u32
  5668. pub aya_obj::generated::bpf_map_info::btf_key_type_id: aya_obj::generated::__u32
  5669. pub aya_obj::generated::bpf_map_info::btf_value_type_id: aya_obj::generated::__u32
  5670. pub aya_obj::generated::bpf_map_info::btf_vmlinux_id: aya_obj::generated::__u32
  5671. pub aya_obj::generated::bpf_map_info::btf_vmlinux_value_type_id: aya_obj::generated::__u32
  5672. pub aya_obj::generated::bpf_map_info::id: aya_obj::generated::__u32
  5673. pub aya_obj::generated::bpf_map_info::ifindex: aya_obj::generated::__u32
  5674. pub aya_obj::generated::bpf_map_info::key_size: aya_obj::generated::__u32
  5675. pub aya_obj::generated::bpf_map_info::map_extra: aya_obj::generated::__u64
  5676. pub aya_obj::generated::bpf_map_info::map_flags: aya_obj::generated::__u32
  5677. pub aya_obj::generated::bpf_map_info::max_entries: aya_obj::generated::__u32
  5678. pub aya_obj::generated::bpf_map_info::name: [core::ffi::c_char; 16]
  5679. pub aya_obj::generated::bpf_map_info::netns_dev: aya_obj::generated::__u64
  5680. pub aya_obj::generated::bpf_map_info::netns_ino: aya_obj::generated::__u64
  5681. pub aya_obj::generated::bpf_map_info::type_: aya_obj::generated::__u32
  5682. pub aya_obj::generated::bpf_map_info::value_size: aya_obj::generated::__u32
  5683. impl core::clone::Clone for aya_obj::generated::bpf_map_info
  5684. pub fn aya_obj::generated::bpf_map_info::clone(&self) -> aya_obj::generated::bpf_map_info
  5685. impl core::fmt::Debug for aya_obj::generated::bpf_map_info
  5686. pub fn aya_obj::generated::bpf_map_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5687. impl core::marker::Copy for aya_obj::generated::bpf_map_info
  5688. impl core::marker::Freeze for aya_obj::generated::bpf_map_info
  5689. impl core::marker::Send for aya_obj::generated::bpf_map_info
  5690. impl core::marker::Sync for aya_obj::generated::bpf_map_info
  5691. impl core::marker::Unpin for aya_obj::generated::bpf_map_info
  5692. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_map_info
  5693. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_map_info
  5694. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_map_info where U: core::convert::From<T>
  5695. pub fn aya_obj::generated::bpf_map_info::into(self) -> U
  5696. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_map_info where U: core::convert::Into<T>
  5697. pub type aya_obj::generated::bpf_map_info::Error = core::convert::Infallible
  5698. pub fn aya_obj::generated::bpf_map_info::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5699. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_map_info where U: core::convert::TryFrom<T>
  5700. pub type aya_obj::generated::bpf_map_info::Error = <U as core::convert::TryFrom<T>>::Error
  5701. pub fn aya_obj::generated::bpf_map_info::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5702. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_map_info where T: core::clone::Clone
  5703. pub type aya_obj::generated::bpf_map_info::Owned = T
  5704. pub fn aya_obj::generated::bpf_map_info::clone_into(&self, target: &mut T)
  5705. pub fn aya_obj::generated::bpf_map_info::to_owned(&self) -> T
  5706. impl<T> core::any::Any for aya_obj::generated::bpf_map_info where T: 'static + core::marker::Sized
  5707. pub fn aya_obj::generated::bpf_map_info::type_id(&self) -> core::any::TypeId
  5708. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_map_info where T: core::marker::Sized
  5709. pub fn aya_obj::generated::bpf_map_info::borrow(&self) -> &T
  5710. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_map_info where T: core::marker::Sized
  5711. pub fn aya_obj::generated::bpf_map_info::borrow_mut(&mut self) -> &mut T
  5712. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_map_info where T: core::clone::Clone
  5713. pub unsafe fn aya_obj::generated::bpf_map_info::clone_to_uninit(&self, dst: *mut T)
  5714. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_map_info where T: core::marker::Copy
  5715. pub unsafe fn aya_obj::generated::bpf_map_info::clone_to_uninit(&self, dst: *mut T)
  5716. impl<T> core::convert::From<T> for aya_obj::generated::bpf_map_info
  5717. pub fn aya_obj::generated::bpf_map_info::from(t: T) -> T
  5718. #[repr(C)] pub struct aya_obj::generated::bpf_prog_info
  5719. pub aya_obj::generated::bpf_prog_info::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  5720. pub aya_obj::generated::bpf_prog_info::_bitfield_align_1: [u8; 0]
  5721. pub aya_obj::generated::bpf_prog_info::attach_btf_id: aya_obj::generated::__u32
  5722. pub aya_obj::generated::bpf_prog_info::attach_btf_obj_id: aya_obj::generated::__u32
  5723. pub aya_obj::generated::bpf_prog_info::btf_id: aya_obj::generated::__u32
  5724. pub aya_obj::generated::bpf_prog_info::created_by_uid: aya_obj::generated::__u32
  5725. pub aya_obj::generated::bpf_prog_info::func_info: aya_obj::generated::__u64
  5726. pub aya_obj::generated::bpf_prog_info::func_info_rec_size: aya_obj::generated::__u32
  5727. pub aya_obj::generated::bpf_prog_info::id: aya_obj::generated::__u32
  5728. pub aya_obj::generated::bpf_prog_info::ifindex: aya_obj::generated::__u32
  5729. pub aya_obj::generated::bpf_prog_info::jited_func_lens: aya_obj::generated::__u64
  5730. pub aya_obj::generated::bpf_prog_info::jited_ksyms: aya_obj::generated::__u64
  5731. pub aya_obj::generated::bpf_prog_info::jited_line_info: aya_obj::generated::__u64
  5732. pub aya_obj::generated::bpf_prog_info::jited_line_info_rec_size: aya_obj::generated::__u32
  5733. pub aya_obj::generated::bpf_prog_info::jited_prog_insns: aya_obj::generated::__u64
  5734. pub aya_obj::generated::bpf_prog_info::jited_prog_len: aya_obj::generated::__u32
  5735. pub aya_obj::generated::bpf_prog_info::line_info: aya_obj::generated::__u64
  5736. pub aya_obj::generated::bpf_prog_info::line_info_rec_size: aya_obj::generated::__u32
  5737. pub aya_obj::generated::bpf_prog_info::load_time: aya_obj::generated::__u64
  5738. pub aya_obj::generated::bpf_prog_info::map_ids: aya_obj::generated::__u64
  5739. pub aya_obj::generated::bpf_prog_info::name: [core::ffi::c_char; 16]
  5740. pub aya_obj::generated::bpf_prog_info::netns_dev: aya_obj::generated::__u64
  5741. pub aya_obj::generated::bpf_prog_info::netns_ino: aya_obj::generated::__u64
  5742. pub aya_obj::generated::bpf_prog_info::nr_func_info: aya_obj::generated::__u32
  5743. pub aya_obj::generated::bpf_prog_info::nr_jited_func_lens: aya_obj::generated::__u32
  5744. pub aya_obj::generated::bpf_prog_info::nr_jited_ksyms: aya_obj::generated::__u32
  5745. pub aya_obj::generated::bpf_prog_info::nr_jited_line_info: aya_obj::generated::__u32
  5746. pub aya_obj::generated::bpf_prog_info::nr_line_info: aya_obj::generated::__u32
  5747. pub aya_obj::generated::bpf_prog_info::nr_map_ids: aya_obj::generated::__u32
  5748. pub aya_obj::generated::bpf_prog_info::nr_prog_tags: aya_obj::generated::__u32
  5749. pub aya_obj::generated::bpf_prog_info::prog_tags: aya_obj::generated::__u64
  5750. pub aya_obj::generated::bpf_prog_info::recursion_misses: aya_obj::generated::__u64
  5751. pub aya_obj::generated::bpf_prog_info::run_cnt: aya_obj::generated::__u64
  5752. pub aya_obj::generated::bpf_prog_info::run_time_ns: aya_obj::generated::__u64
  5753. pub aya_obj::generated::bpf_prog_info::tag: [aya_obj::generated::__u8; 8]
  5754. pub aya_obj::generated::bpf_prog_info::type_: aya_obj::generated::__u32
  5755. pub aya_obj::generated::bpf_prog_info::verified_insns: aya_obj::generated::__u32
  5756. pub aya_obj::generated::bpf_prog_info::xlated_prog_insns: aya_obj::generated::__u64
  5757. pub aya_obj::generated::bpf_prog_info::xlated_prog_len: aya_obj::generated::__u32
  5758. impl aya_obj::generated::bpf_prog_info
  5759. pub fn aya_obj::generated::bpf_prog_info::gpl_compatible(&self) -> aya_obj::generated::__u32
  5760. pub fn aya_obj::generated::bpf_prog_info::new_bitfield_1(gpl_compatible: aya_obj::generated::__u32) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 4]>
  5761. pub fn aya_obj::generated::bpf_prog_info::set_gpl_compatible(&mut self, val: aya_obj::generated::__u32)
  5762. impl core::clone::Clone for aya_obj::generated::bpf_prog_info
  5763. pub fn aya_obj::generated::bpf_prog_info::clone(&self) -> aya_obj::generated::bpf_prog_info
  5764. impl core::fmt::Debug for aya_obj::generated::bpf_prog_info
  5765. pub fn aya_obj::generated::bpf_prog_info::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5766. impl core::marker::Copy for aya_obj::generated::bpf_prog_info
  5767. impl core::marker::Freeze for aya_obj::generated::bpf_prog_info
  5768. impl core::marker::Send for aya_obj::generated::bpf_prog_info
  5769. impl core::marker::Sync for aya_obj::generated::bpf_prog_info
  5770. impl core::marker::Unpin for aya_obj::generated::bpf_prog_info
  5771. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::bpf_prog_info
  5772. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::bpf_prog_info
  5773. impl<T, U> core::convert::Into<U> for aya_obj::generated::bpf_prog_info where U: core::convert::From<T>
  5774. pub fn aya_obj::generated::bpf_prog_info::into(self) -> U
  5775. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::bpf_prog_info where U: core::convert::Into<T>
  5776. pub type aya_obj::generated::bpf_prog_info::Error = core::convert::Infallible
  5777. pub fn aya_obj::generated::bpf_prog_info::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5778. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::bpf_prog_info where U: core::convert::TryFrom<T>
  5779. pub type aya_obj::generated::bpf_prog_info::Error = <U as core::convert::TryFrom<T>>::Error
  5780. pub fn aya_obj::generated::bpf_prog_info::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5781. impl<T> alloc::borrow::ToOwned for aya_obj::generated::bpf_prog_info where T: core::clone::Clone
  5782. pub type aya_obj::generated::bpf_prog_info::Owned = T
  5783. pub fn aya_obj::generated::bpf_prog_info::clone_into(&self, target: &mut T)
  5784. pub fn aya_obj::generated::bpf_prog_info::to_owned(&self) -> T
  5785. impl<T> core::any::Any for aya_obj::generated::bpf_prog_info where T: 'static + core::marker::Sized
  5786. pub fn aya_obj::generated::bpf_prog_info::type_id(&self) -> core::any::TypeId
  5787. impl<T> core::borrow::Borrow<T> for aya_obj::generated::bpf_prog_info where T: core::marker::Sized
  5788. pub fn aya_obj::generated::bpf_prog_info::borrow(&self) -> &T
  5789. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::bpf_prog_info where T: core::marker::Sized
  5790. pub fn aya_obj::generated::bpf_prog_info::borrow_mut(&mut self) -> &mut T
  5791. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_prog_info where T: core::clone::Clone
  5792. pub unsafe fn aya_obj::generated::bpf_prog_info::clone_to_uninit(&self, dst: *mut T)
  5793. impl<T> core::clone::CloneToUninit for aya_obj::generated::bpf_prog_info where T: core::marker::Copy
  5794. pub unsafe fn aya_obj::generated::bpf_prog_info::clone_to_uninit(&self, dst: *mut T)
  5795. impl<T> core::convert::From<T> for aya_obj::generated::bpf_prog_info
  5796. pub fn aya_obj::generated::bpf_prog_info::from(t: T) -> T
  5797. #[repr(C)] pub struct aya_obj::generated::btf_array
  5798. pub aya_obj::generated::btf_array::index_type: aya_obj::generated::__u32
  5799. pub aya_obj::generated::btf_array::nelems: aya_obj::generated::__u32
  5800. pub aya_obj::generated::btf_array::type_: aya_obj::generated::__u32
  5801. impl core::clone::Clone for aya_obj::generated::btf_array
  5802. pub fn aya_obj::generated::btf_array::clone(&self) -> aya_obj::generated::btf_array
  5803. impl core::fmt::Debug for aya_obj::generated::btf_array
  5804. pub fn aya_obj::generated::btf_array::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5805. impl core::marker::Copy for aya_obj::generated::btf_array
  5806. impl core::marker::Freeze for aya_obj::generated::btf_array
  5807. impl core::marker::Send for aya_obj::generated::btf_array
  5808. impl core::marker::Sync for aya_obj::generated::btf_array
  5809. impl core::marker::Unpin for aya_obj::generated::btf_array
  5810. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_array
  5811. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_array
  5812. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_array where U: core::convert::From<T>
  5813. pub fn aya_obj::generated::btf_array::into(self) -> U
  5814. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_array where U: core::convert::Into<T>
  5815. pub type aya_obj::generated::btf_array::Error = core::convert::Infallible
  5816. pub fn aya_obj::generated::btf_array::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5817. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_array where U: core::convert::TryFrom<T>
  5818. pub type aya_obj::generated::btf_array::Error = <U as core::convert::TryFrom<T>>::Error
  5819. pub fn aya_obj::generated::btf_array::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5820. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_array where T: core::clone::Clone
  5821. pub type aya_obj::generated::btf_array::Owned = T
  5822. pub fn aya_obj::generated::btf_array::clone_into(&self, target: &mut T)
  5823. pub fn aya_obj::generated::btf_array::to_owned(&self) -> T
  5824. impl<T> core::any::Any for aya_obj::generated::btf_array where T: 'static + core::marker::Sized
  5825. pub fn aya_obj::generated::btf_array::type_id(&self) -> core::any::TypeId
  5826. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_array where T: core::marker::Sized
  5827. pub fn aya_obj::generated::btf_array::borrow(&self) -> &T
  5828. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_array where T: core::marker::Sized
  5829. pub fn aya_obj::generated::btf_array::borrow_mut(&mut self) -> &mut T
  5830. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_array where T: core::clone::Clone
  5831. pub unsafe fn aya_obj::generated::btf_array::clone_to_uninit(&self, dst: *mut T)
  5832. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_array where T: core::marker::Copy
  5833. pub unsafe fn aya_obj::generated::btf_array::clone_to_uninit(&self, dst: *mut T)
  5834. impl<T> core::convert::From<T> for aya_obj::generated::btf_array
  5835. pub fn aya_obj::generated::btf_array::from(t: T) -> T
  5836. #[repr(C)] pub struct aya_obj::generated::btf_decl_tag
  5837. pub aya_obj::generated::btf_decl_tag::component_idx: aya_obj::generated::__s32
  5838. impl core::clone::Clone for aya_obj::generated::btf_decl_tag
  5839. pub fn aya_obj::generated::btf_decl_tag::clone(&self) -> aya_obj::generated::btf_decl_tag
  5840. impl core::fmt::Debug for aya_obj::generated::btf_decl_tag
  5841. pub fn aya_obj::generated::btf_decl_tag::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5842. impl core::marker::Copy for aya_obj::generated::btf_decl_tag
  5843. impl core::marker::Freeze for aya_obj::generated::btf_decl_tag
  5844. impl core::marker::Send for aya_obj::generated::btf_decl_tag
  5845. impl core::marker::Sync for aya_obj::generated::btf_decl_tag
  5846. impl core::marker::Unpin for aya_obj::generated::btf_decl_tag
  5847. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_decl_tag
  5848. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_decl_tag
  5849. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_decl_tag where U: core::convert::From<T>
  5850. pub fn aya_obj::generated::btf_decl_tag::into(self) -> U
  5851. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_decl_tag where U: core::convert::Into<T>
  5852. pub type aya_obj::generated::btf_decl_tag::Error = core::convert::Infallible
  5853. pub fn aya_obj::generated::btf_decl_tag::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5854. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_decl_tag where U: core::convert::TryFrom<T>
  5855. pub type aya_obj::generated::btf_decl_tag::Error = <U as core::convert::TryFrom<T>>::Error
  5856. pub fn aya_obj::generated::btf_decl_tag::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5857. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_decl_tag where T: core::clone::Clone
  5858. pub type aya_obj::generated::btf_decl_tag::Owned = T
  5859. pub fn aya_obj::generated::btf_decl_tag::clone_into(&self, target: &mut T)
  5860. pub fn aya_obj::generated::btf_decl_tag::to_owned(&self) -> T
  5861. impl<T> core::any::Any for aya_obj::generated::btf_decl_tag where T: 'static + core::marker::Sized
  5862. pub fn aya_obj::generated::btf_decl_tag::type_id(&self) -> core::any::TypeId
  5863. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_decl_tag where T: core::marker::Sized
  5864. pub fn aya_obj::generated::btf_decl_tag::borrow(&self) -> &T
  5865. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_decl_tag where T: core::marker::Sized
  5866. pub fn aya_obj::generated::btf_decl_tag::borrow_mut(&mut self) -> &mut T
  5867. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_decl_tag where T: core::clone::Clone
  5868. pub unsafe fn aya_obj::generated::btf_decl_tag::clone_to_uninit(&self, dst: *mut T)
  5869. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_decl_tag where T: core::marker::Copy
  5870. pub unsafe fn aya_obj::generated::btf_decl_tag::clone_to_uninit(&self, dst: *mut T)
  5871. impl<T> core::convert::From<T> for aya_obj::generated::btf_decl_tag
  5872. pub fn aya_obj::generated::btf_decl_tag::from(t: T) -> T
  5873. #[repr(C)] pub struct aya_obj::generated::btf_enum
  5874. pub aya_obj::generated::btf_enum::name_off: aya_obj::generated::__u32
  5875. pub aya_obj::generated::btf_enum::val: aya_obj::generated::__s32
  5876. impl core::clone::Clone for aya_obj::generated::btf_enum
  5877. pub fn aya_obj::generated::btf_enum::clone(&self) -> aya_obj::generated::btf_enum
  5878. impl core::fmt::Debug for aya_obj::generated::btf_enum
  5879. pub fn aya_obj::generated::btf_enum::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5880. impl core::marker::Copy for aya_obj::generated::btf_enum
  5881. impl core::marker::Freeze for aya_obj::generated::btf_enum
  5882. impl core::marker::Send for aya_obj::generated::btf_enum
  5883. impl core::marker::Sync for aya_obj::generated::btf_enum
  5884. impl core::marker::Unpin for aya_obj::generated::btf_enum
  5885. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_enum
  5886. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_enum
  5887. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_enum where U: core::convert::From<T>
  5888. pub fn aya_obj::generated::btf_enum::into(self) -> U
  5889. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_enum where U: core::convert::Into<T>
  5890. pub type aya_obj::generated::btf_enum::Error = core::convert::Infallible
  5891. pub fn aya_obj::generated::btf_enum::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5892. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_enum where U: core::convert::TryFrom<T>
  5893. pub type aya_obj::generated::btf_enum::Error = <U as core::convert::TryFrom<T>>::Error
  5894. pub fn aya_obj::generated::btf_enum::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5895. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_enum where T: core::clone::Clone
  5896. pub type aya_obj::generated::btf_enum::Owned = T
  5897. pub fn aya_obj::generated::btf_enum::clone_into(&self, target: &mut T)
  5898. pub fn aya_obj::generated::btf_enum::to_owned(&self) -> T
  5899. impl<T> core::any::Any for aya_obj::generated::btf_enum where T: 'static + core::marker::Sized
  5900. pub fn aya_obj::generated::btf_enum::type_id(&self) -> core::any::TypeId
  5901. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_enum where T: core::marker::Sized
  5902. pub fn aya_obj::generated::btf_enum::borrow(&self) -> &T
  5903. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_enum where T: core::marker::Sized
  5904. pub fn aya_obj::generated::btf_enum::borrow_mut(&mut self) -> &mut T
  5905. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_enum where T: core::clone::Clone
  5906. pub unsafe fn aya_obj::generated::btf_enum::clone_to_uninit(&self, dst: *mut T)
  5907. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_enum where T: core::marker::Copy
  5908. pub unsafe fn aya_obj::generated::btf_enum::clone_to_uninit(&self, dst: *mut T)
  5909. impl<T> core::convert::From<T> for aya_obj::generated::btf_enum
  5910. pub fn aya_obj::generated::btf_enum::from(t: T) -> T
  5911. #[repr(C)] pub struct aya_obj::generated::btf_ext_header
  5912. pub aya_obj::generated::btf_ext_header::core_relo_len: core::ffi::c_uint
  5913. pub aya_obj::generated::btf_ext_header::core_relo_off: core::ffi::c_uint
  5914. pub aya_obj::generated::btf_ext_header::flags: core::ffi::c_uchar
  5915. pub aya_obj::generated::btf_ext_header::func_info_len: core::ffi::c_uint
  5916. pub aya_obj::generated::btf_ext_header::func_info_off: core::ffi::c_uint
  5917. pub aya_obj::generated::btf_ext_header::hdr_len: core::ffi::c_uint
  5918. pub aya_obj::generated::btf_ext_header::line_info_len: core::ffi::c_uint
  5919. pub aya_obj::generated::btf_ext_header::line_info_off: core::ffi::c_uint
  5920. pub aya_obj::generated::btf_ext_header::magic: core::ffi::c_ushort
  5921. pub aya_obj::generated::btf_ext_header::version: core::ffi::c_uchar
  5922. impl core::clone::Clone for aya_obj::generated::btf_ext_header
  5923. pub fn aya_obj::generated::btf_ext_header::clone(&self) -> aya_obj::generated::btf_ext_header
  5924. impl core::fmt::Debug for aya_obj::generated::btf_ext_header
  5925. pub fn aya_obj::generated::btf_ext_header::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5926. impl core::marker::Copy for aya_obj::generated::btf_ext_header
  5927. impl core::marker::Freeze for aya_obj::generated::btf_ext_header
  5928. impl core::marker::Send for aya_obj::generated::btf_ext_header
  5929. impl core::marker::Sync for aya_obj::generated::btf_ext_header
  5930. impl core::marker::Unpin for aya_obj::generated::btf_ext_header
  5931. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_ext_header
  5932. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_ext_header
  5933. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_ext_header where U: core::convert::From<T>
  5934. pub fn aya_obj::generated::btf_ext_header::into(self) -> U
  5935. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_ext_header where U: core::convert::Into<T>
  5936. pub type aya_obj::generated::btf_ext_header::Error = core::convert::Infallible
  5937. pub fn aya_obj::generated::btf_ext_header::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5938. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_ext_header where U: core::convert::TryFrom<T>
  5939. pub type aya_obj::generated::btf_ext_header::Error = <U as core::convert::TryFrom<T>>::Error
  5940. pub fn aya_obj::generated::btf_ext_header::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5941. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_ext_header where T: core::clone::Clone
  5942. pub type aya_obj::generated::btf_ext_header::Owned = T
  5943. pub fn aya_obj::generated::btf_ext_header::clone_into(&self, target: &mut T)
  5944. pub fn aya_obj::generated::btf_ext_header::to_owned(&self) -> T
  5945. impl<T> core::any::Any for aya_obj::generated::btf_ext_header where T: 'static + core::marker::Sized
  5946. pub fn aya_obj::generated::btf_ext_header::type_id(&self) -> core::any::TypeId
  5947. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_ext_header where T: core::marker::Sized
  5948. pub fn aya_obj::generated::btf_ext_header::borrow(&self) -> &T
  5949. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_ext_header where T: core::marker::Sized
  5950. pub fn aya_obj::generated::btf_ext_header::borrow_mut(&mut self) -> &mut T
  5951. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_ext_header where T: core::clone::Clone
  5952. pub unsafe fn aya_obj::generated::btf_ext_header::clone_to_uninit(&self, dst: *mut T)
  5953. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_ext_header where T: core::marker::Copy
  5954. pub unsafe fn aya_obj::generated::btf_ext_header::clone_to_uninit(&self, dst: *mut T)
  5955. impl<T> core::convert::From<T> for aya_obj::generated::btf_ext_header
  5956. pub fn aya_obj::generated::btf_ext_header::from(t: T) -> T
  5957. #[repr(C)] pub struct aya_obj::generated::btf_header
  5958. pub aya_obj::generated::btf_header::flags: aya_obj::generated::__u8
  5959. pub aya_obj::generated::btf_header::hdr_len: aya_obj::generated::__u32
  5960. pub aya_obj::generated::btf_header::magic: aya_obj::generated::__u16
  5961. pub aya_obj::generated::btf_header::str_len: aya_obj::generated::__u32
  5962. pub aya_obj::generated::btf_header::str_off: aya_obj::generated::__u32
  5963. pub aya_obj::generated::btf_header::type_len: aya_obj::generated::__u32
  5964. pub aya_obj::generated::btf_header::type_off: aya_obj::generated::__u32
  5965. pub aya_obj::generated::btf_header::version: aya_obj::generated::__u8
  5966. impl core::clone::Clone for aya_obj::generated::btf_header
  5967. pub fn aya_obj::generated::btf_header::clone(&self) -> aya_obj::generated::btf_header
  5968. impl core::fmt::Debug for aya_obj::generated::btf_header
  5969. pub fn aya_obj::generated::btf_header::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5970. impl core::marker::Copy for aya_obj::generated::btf_header
  5971. impl core::marker::Freeze for aya_obj::generated::btf_header
  5972. impl core::marker::Send for aya_obj::generated::btf_header
  5973. impl core::marker::Sync for aya_obj::generated::btf_header
  5974. impl core::marker::Unpin for aya_obj::generated::btf_header
  5975. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_header
  5976. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_header
  5977. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_header where U: core::convert::From<T>
  5978. pub fn aya_obj::generated::btf_header::into(self) -> U
  5979. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_header where U: core::convert::Into<T>
  5980. pub type aya_obj::generated::btf_header::Error = core::convert::Infallible
  5981. pub fn aya_obj::generated::btf_header::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5982. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_header where U: core::convert::TryFrom<T>
  5983. pub type aya_obj::generated::btf_header::Error = <U as core::convert::TryFrom<T>>::Error
  5984. pub fn aya_obj::generated::btf_header::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5985. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_header where T: core::clone::Clone
  5986. pub type aya_obj::generated::btf_header::Owned = T
  5987. pub fn aya_obj::generated::btf_header::clone_into(&self, target: &mut T)
  5988. pub fn aya_obj::generated::btf_header::to_owned(&self) -> T
  5989. impl<T> core::any::Any for aya_obj::generated::btf_header where T: 'static + core::marker::Sized
  5990. pub fn aya_obj::generated::btf_header::type_id(&self) -> core::any::TypeId
  5991. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_header where T: core::marker::Sized
  5992. pub fn aya_obj::generated::btf_header::borrow(&self) -> &T
  5993. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_header where T: core::marker::Sized
  5994. pub fn aya_obj::generated::btf_header::borrow_mut(&mut self) -> &mut T
  5995. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_header where T: core::clone::Clone
  5996. pub unsafe fn aya_obj::generated::btf_header::clone_to_uninit(&self, dst: *mut T)
  5997. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_header where T: core::marker::Copy
  5998. pub unsafe fn aya_obj::generated::btf_header::clone_to_uninit(&self, dst: *mut T)
  5999. impl<T> core::convert::From<T> for aya_obj::generated::btf_header
  6000. pub fn aya_obj::generated::btf_header::from(t: T) -> T
  6001. #[repr(C)] pub struct aya_obj::generated::btf_member
  6002. pub aya_obj::generated::btf_member::name_off: aya_obj::generated::__u32
  6003. pub aya_obj::generated::btf_member::offset: aya_obj::generated::__u32
  6004. pub aya_obj::generated::btf_member::type_: aya_obj::generated::__u32
  6005. impl core::clone::Clone for aya_obj::generated::btf_member
  6006. pub fn aya_obj::generated::btf_member::clone(&self) -> aya_obj::generated::btf_member
  6007. impl core::fmt::Debug for aya_obj::generated::btf_member
  6008. pub fn aya_obj::generated::btf_member::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6009. impl core::marker::Copy for aya_obj::generated::btf_member
  6010. impl core::marker::Freeze for aya_obj::generated::btf_member
  6011. impl core::marker::Send for aya_obj::generated::btf_member
  6012. impl core::marker::Sync for aya_obj::generated::btf_member
  6013. impl core::marker::Unpin for aya_obj::generated::btf_member
  6014. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_member
  6015. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_member
  6016. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_member where U: core::convert::From<T>
  6017. pub fn aya_obj::generated::btf_member::into(self) -> U
  6018. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_member where U: core::convert::Into<T>
  6019. pub type aya_obj::generated::btf_member::Error = core::convert::Infallible
  6020. pub fn aya_obj::generated::btf_member::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6021. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_member where U: core::convert::TryFrom<T>
  6022. pub type aya_obj::generated::btf_member::Error = <U as core::convert::TryFrom<T>>::Error
  6023. pub fn aya_obj::generated::btf_member::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6024. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_member where T: core::clone::Clone
  6025. pub type aya_obj::generated::btf_member::Owned = T
  6026. pub fn aya_obj::generated::btf_member::clone_into(&self, target: &mut T)
  6027. pub fn aya_obj::generated::btf_member::to_owned(&self) -> T
  6028. impl<T> core::any::Any for aya_obj::generated::btf_member where T: 'static + core::marker::Sized
  6029. pub fn aya_obj::generated::btf_member::type_id(&self) -> core::any::TypeId
  6030. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_member where T: core::marker::Sized
  6031. pub fn aya_obj::generated::btf_member::borrow(&self) -> &T
  6032. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_member where T: core::marker::Sized
  6033. pub fn aya_obj::generated::btf_member::borrow_mut(&mut self) -> &mut T
  6034. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_member where T: core::clone::Clone
  6035. pub unsafe fn aya_obj::generated::btf_member::clone_to_uninit(&self, dst: *mut T)
  6036. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_member where T: core::marker::Copy
  6037. pub unsafe fn aya_obj::generated::btf_member::clone_to_uninit(&self, dst: *mut T)
  6038. impl<T> core::convert::From<T> for aya_obj::generated::btf_member
  6039. pub fn aya_obj::generated::btf_member::from(t: T) -> T
  6040. #[repr(C)] pub struct aya_obj::generated::btf_param
  6041. pub aya_obj::generated::btf_param::name_off: aya_obj::generated::__u32
  6042. pub aya_obj::generated::btf_param::type_: aya_obj::generated::__u32
  6043. impl core::clone::Clone for aya_obj::generated::btf_param
  6044. pub fn aya_obj::generated::btf_param::clone(&self) -> aya_obj::generated::btf_param
  6045. impl core::fmt::Debug for aya_obj::generated::btf_param
  6046. pub fn aya_obj::generated::btf_param::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6047. impl core::marker::Copy for aya_obj::generated::btf_param
  6048. impl core::marker::Freeze for aya_obj::generated::btf_param
  6049. impl core::marker::Send for aya_obj::generated::btf_param
  6050. impl core::marker::Sync for aya_obj::generated::btf_param
  6051. impl core::marker::Unpin for aya_obj::generated::btf_param
  6052. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_param
  6053. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_param
  6054. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_param where U: core::convert::From<T>
  6055. pub fn aya_obj::generated::btf_param::into(self) -> U
  6056. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_param where U: core::convert::Into<T>
  6057. pub type aya_obj::generated::btf_param::Error = core::convert::Infallible
  6058. pub fn aya_obj::generated::btf_param::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6059. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_param where U: core::convert::TryFrom<T>
  6060. pub type aya_obj::generated::btf_param::Error = <U as core::convert::TryFrom<T>>::Error
  6061. pub fn aya_obj::generated::btf_param::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6062. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_param where T: core::clone::Clone
  6063. pub type aya_obj::generated::btf_param::Owned = T
  6064. pub fn aya_obj::generated::btf_param::clone_into(&self, target: &mut T)
  6065. pub fn aya_obj::generated::btf_param::to_owned(&self) -> T
  6066. impl<T> core::any::Any for aya_obj::generated::btf_param where T: 'static + core::marker::Sized
  6067. pub fn aya_obj::generated::btf_param::type_id(&self) -> core::any::TypeId
  6068. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_param where T: core::marker::Sized
  6069. pub fn aya_obj::generated::btf_param::borrow(&self) -> &T
  6070. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_param where T: core::marker::Sized
  6071. pub fn aya_obj::generated::btf_param::borrow_mut(&mut self) -> &mut T
  6072. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_param where T: core::clone::Clone
  6073. pub unsafe fn aya_obj::generated::btf_param::clone_to_uninit(&self, dst: *mut T)
  6074. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_param where T: core::marker::Copy
  6075. pub unsafe fn aya_obj::generated::btf_param::clone_to_uninit(&self, dst: *mut T)
  6076. impl<T> core::convert::From<T> for aya_obj::generated::btf_param
  6077. pub fn aya_obj::generated::btf_param::from(t: T) -> T
  6078. #[repr(C)] pub struct aya_obj::generated::btf_type
  6079. pub aya_obj::generated::btf_type::__bindgen_anon_1: aya_obj::generated::btf_type__bindgen_ty_1
  6080. pub aya_obj::generated::btf_type::info: aya_obj::generated::__u32
  6081. pub aya_obj::generated::btf_type::name_off: aya_obj::generated::__u32
  6082. impl core::clone::Clone for aya_obj::generated::btf_type
  6083. pub fn aya_obj::generated::btf_type::clone(&self) -> aya_obj::generated::btf_type
  6084. impl core::marker::Copy for aya_obj::generated::btf_type
  6085. impl core::marker::Freeze for aya_obj::generated::btf_type
  6086. impl core::marker::Send for aya_obj::generated::btf_type
  6087. impl core::marker::Sync for aya_obj::generated::btf_type
  6088. impl core::marker::Unpin for aya_obj::generated::btf_type
  6089. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_type
  6090. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_type
  6091. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_type where U: core::convert::From<T>
  6092. pub fn aya_obj::generated::btf_type::into(self) -> U
  6093. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_type where U: core::convert::Into<T>
  6094. pub type aya_obj::generated::btf_type::Error = core::convert::Infallible
  6095. pub fn aya_obj::generated::btf_type::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6096. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_type where U: core::convert::TryFrom<T>
  6097. pub type aya_obj::generated::btf_type::Error = <U as core::convert::TryFrom<T>>::Error
  6098. pub fn aya_obj::generated::btf_type::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6099. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_type where T: core::clone::Clone
  6100. pub type aya_obj::generated::btf_type::Owned = T
  6101. pub fn aya_obj::generated::btf_type::clone_into(&self, target: &mut T)
  6102. pub fn aya_obj::generated::btf_type::to_owned(&self) -> T
  6103. impl<T> core::any::Any for aya_obj::generated::btf_type where T: 'static + core::marker::Sized
  6104. pub fn aya_obj::generated::btf_type::type_id(&self) -> core::any::TypeId
  6105. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_type where T: core::marker::Sized
  6106. pub fn aya_obj::generated::btf_type::borrow(&self) -> &T
  6107. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_type where T: core::marker::Sized
  6108. pub fn aya_obj::generated::btf_type::borrow_mut(&mut self) -> &mut T
  6109. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_type where T: core::clone::Clone
  6110. pub unsafe fn aya_obj::generated::btf_type::clone_to_uninit(&self, dst: *mut T)
  6111. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_type where T: core::marker::Copy
  6112. pub unsafe fn aya_obj::generated::btf_type::clone_to_uninit(&self, dst: *mut T)
  6113. impl<T> core::convert::From<T> for aya_obj::generated::btf_type
  6114. pub fn aya_obj::generated::btf_type::from(t: T) -> T
  6115. #[repr(C)] pub struct aya_obj::generated::btf_var
  6116. pub aya_obj::generated::btf_var::linkage: aya_obj::generated::__u32
  6117. impl core::clone::Clone for aya_obj::generated::btf_var
  6118. pub fn aya_obj::generated::btf_var::clone(&self) -> aya_obj::generated::btf_var
  6119. impl core::fmt::Debug for aya_obj::generated::btf_var
  6120. pub fn aya_obj::generated::btf_var::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6121. impl core::marker::Copy for aya_obj::generated::btf_var
  6122. impl core::marker::Freeze for aya_obj::generated::btf_var
  6123. impl core::marker::Send for aya_obj::generated::btf_var
  6124. impl core::marker::Sync for aya_obj::generated::btf_var
  6125. impl core::marker::Unpin for aya_obj::generated::btf_var
  6126. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_var
  6127. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_var
  6128. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_var where U: core::convert::From<T>
  6129. pub fn aya_obj::generated::btf_var::into(self) -> U
  6130. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_var where U: core::convert::Into<T>
  6131. pub type aya_obj::generated::btf_var::Error = core::convert::Infallible
  6132. pub fn aya_obj::generated::btf_var::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6133. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_var where U: core::convert::TryFrom<T>
  6134. pub type aya_obj::generated::btf_var::Error = <U as core::convert::TryFrom<T>>::Error
  6135. pub fn aya_obj::generated::btf_var::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6136. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_var where T: core::clone::Clone
  6137. pub type aya_obj::generated::btf_var::Owned = T
  6138. pub fn aya_obj::generated::btf_var::clone_into(&self, target: &mut T)
  6139. pub fn aya_obj::generated::btf_var::to_owned(&self) -> T
  6140. impl<T> core::any::Any for aya_obj::generated::btf_var where T: 'static + core::marker::Sized
  6141. pub fn aya_obj::generated::btf_var::type_id(&self) -> core::any::TypeId
  6142. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_var where T: core::marker::Sized
  6143. pub fn aya_obj::generated::btf_var::borrow(&self) -> &T
  6144. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_var where T: core::marker::Sized
  6145. pub fn aya_obj::generated::btf_var::borrow_mut(&mut self) -> &mut T
  6146. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_var where T: core::clone::Clone
  6147. pub unsafe fn aya_obj::generated::btf_var::clone_to_uninit(&self, dst: *mut T)
  6148. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_var where T: core::marker::Copy
  6149. pub unsafe fn aya_obj::generated::btf_var::clone_to_uninit(&self, dst: *mut T)
  6150. impl<T> core::convert::From<T> for aya_obj::generated::btf_var
  6151. pub fn aya_obj::generated::btf_var::from(t: T) -> T
  6152. #[repr(C)] pub struct aya_obj::generated::btf_var_secinfo
  6153. pub aya_obj::generated::btf_var_secinfo::offset: aya_obj::generated::__u32
  6154. pub aya_obj::generated::btf_var_secinfo::size: aya_obj::generated::__u32
  6155. pub aya_obj::generated::btf_var_secinfo::type_: aya_obj::generated::__u32
  6156. impl core::clone::Clone for aya_obj::generated::btf_var_secinfo
  6157. pub fn aya_obj::generated::btf_var_secinfo::clone(&self) -> aya_obj::generated::btf_var_secinfo
  6158. impl core::fmt::Debug for aya_obj::generated::btf_var_secinfo
  6159. pub fn aya_obj::generated::btf_var_secinfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6160. impl core::marker::Copy for aya_obj::generated::btf_var_secinfo
  6161. impl core::marker::Freeze for aya_obj::generated::btf_var_secinfo
  6162. impl core::marker::Send for aya_obj::generated::btf_var_secinfo
  6163. impl core::marker::Sync for aya_obj::generated::btf_var_secinfo
  6164. impl core::marker::Unpin for aya_obj::generated::btf_var_secinfo
  6165. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::btf_var_secinfo
  6166. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::btf_var_secinfo
  6167. impl<T, U> core::convert::Into<U> for aya_obj::generated::btf_var_secinfo where U: core::convert::From<T>
  6168. pub fn aya_obj::generated::btf_var_secinfo::into(self) -> U
  6169. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::btf_var_secinfo where U: core::convert::Into<T>
  6170. pub type aya_obj::generated::btf_var_secinfo::Error = core::convert::Infallible
  6171. pub fn aya_obj::generated::btf_var_secinfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6172. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::btf_var_secinfo where U: core::convert::TryFrom<T>
  6173. pub type aya_obj::generated::btf_var_secinfo::Error = <U as core::convert::TryFrom<T>>::Error
  6174. pub fn aya_obj::generated::btf_var_secinfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6175. impl<T> alloc::borrow::ToOwned for aya_obj::generated::btf_var_secinfo where T: core::clone::Clone
  6176. pub type aya_obj::generated::btf_var_secinfo::Owned = T
  6177. pub fn aya_obj::generated::btf_var_secinfo::clone_into(&self, target: &mut T)
  6178. pub fn aya_obj::generated::btf_var_secinfo::to_owned(&self) -> T
  6179. impl<T> core::any::Any for aya_obj::generated::btf_var_secinfo where T: 'static + core::marker::Sized
  6180. pub fn aya_obj::generated::btf_var_secinfo::type_id(&self) -> core::any::TypeId
  6181. impl<T> core::borrow::Borrow<T> for aya_obj::generated::btf_var_secinfo where T: core::marker::Sized
  6182. pub fn aya_obj::generated::btf_var_secinfo::borrow(&self) -> &T
  6183. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::btf_var_secinfo where T: core::marker::Sized
  6184. pub fn aya_obj::generated::btf_var_secinfo::borrow_mut(&mut self) -> &mut T
  6185. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_var_secinfo where T: core::clone::Clone
  6186. pub unsafe fn aya_obj::generated::btf_var_secinfo::clone_to_uninit(&self, dst: *mut T)
  6187. impl<T> core::clone::CloneToUninit for aya_obj::generated::btf_var_secinfo where T: core::marker::Copy
  6188. pub unsafe fn aya_obj::generated::btf_var_secinfo::clone_to_uninit(&self, dst: *mut T)
  6189. impl<T> core::convert::From<T> for aya_obj::generated::btf_var_secinfo
  6190. pub fn aya_obj::generated::btf_var_secinfo::from(t: T) -> T
  6191. #[repr(C)] pub struct aya_obj::generated::ifinfomsg
  6192. pub aya_obj::generated::ifinfomsg::__ifi_pad: core::ffi::c_uchar
  6193. pub aya_obj::generated::ifinfomsg::ifi_change: core::ffi::c_uint
  6194. pub aya_obj::generated::ifinfomsg::ifi_family: core::ffi::c_uchar
  6195. pub aya_obj::generated::ifinfomsg::ifi_flags: core::ffi::c_uint
  6196. pub aya_obj::generated::ifinfomsg::ifi_index: core::ffi::c_int
  6197. pub aya_obj::generated::ifinfomsg::ifi_type: core::ffi::c_ushort
  6198. impl core::clone::Clone for aya_obj::generated::ifinfomsg
  6199. pub fn aya_obj::generated::ifinfomsg::clone(&self) -> aya_obj::generated::ifinfomsg
  6200. impl core::fmt::Debug for aya_obj::generated::ifinfomsg
  6201. pub fn aya_obj::generated::ifinfomsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6202. impl core::marker::Copy for aya_obj::generated::ifinfomsg
  6203. impl core::marker::Freeze for aya_obj::generated::ifinfomsg
  6204. impl core::marker::Send for aya_obj::generated::ifinfomsg
  6205. impl core::marker::Sync for aya_obj::generated::ifinfomsg
  6206. impl core::marker::Unpin for aya_obj::generated::ifinfomsg
  6207. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::ifinfomsg
  6208. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::ifinfomsg
  6209. impl<T, U> core::convert::Into<U> for aya_obj::generated::ifinfomsg where U: core::convert::From<T>
  6210. pub fn aya_obj::generated::ifinfomsg::into(self) -> U
  6211. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::ifinfomsg where U: core::convert::Into<T>
  6212. pub type aya_obj::generated::ifinfomsg::Error = core::convert::Infallible
  6213. pub fn aya_obj::generated::ifinfomsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6214. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::ifinfomsg where U: core::convert::TryFrom<T>
  6215. pub type aya_obj::generated::ifinfomsg::Error = <U as core::convert::TryFrom<T>>::Error
  6216. pub fn aya_obj::generated::ifinfomsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6217. impl<T> alloc::borrow::ToOwned for aya_obj::generated::ifinfomsg where T: core::clone::Clone
  6218. pub type aya_obj::generated::ifinfomsg::Owned = T
  6219. pub fn aya_obj::generated::ifinfomsg::clone_into(&self, target: &mut T)
  6220. pub fn aya_obj::generated::ifinfomsg::to_owned(&self) -> T
  6221. impl<T> core::any::Any for aya_obj::generated::ifinfomsg where T: 'static + core::marker::Sized
  6222. pub fn aya_obj::generated::ifinfomsg::type_id(&self) -> core::any::TypeId
  6223. impl<T> core::borrow::Borrow<T> for aya_obj::generated::ifinfomsg where T: core::marker::Sized
  6224. pub fn aya_obj::generated::ifinfomsg::borrow(&self) -> &T
  6225. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::ifinfomsg where T: core::marker::Sized
  6226. pub fn aya_obj::generated::ifinfomsg::borrow_mut(&mut self) -> &mut T
  6227. impl<T> core::clone::CloneToUninit for aya_obj::generated::ifinfomsg where T: core::clone::Clone
  6228. pub unsafe fn aya_obj::generated::ifinfomsg::clone_to_uninit(&self, dst: *mut T)
  6229. impl<T> core::clone::CloneToUninit for aya_obj::generated::ifinfomsg where T: core::marker::Copy
  6230. pub unsafe fn aya_obj::generated::ifinfomsg::clone_to_uninit(&self, dst: *mut T)
  6231. impl<T> core::convert::From<T> for aya_obj::generated::ifinfomsg
  6232. pub fn aya_obj::generated::ifinfomsg::from(t: T) -> T
  6233. #[repr(C)] pub struct aya_obj::generated::perf_event_attr
  6234. pub aya_obj::generated::perf_event_attr::__bindgen_anon_1: aya_obj::generated::perf_event_attr__bindgen_ty_1
  6235. pub aya_obj::generated::perf_event_attr::__bindgen_anon_2: aya_obj::generated::perf_event_attr__bindgen_ty_2
  6236. pub aya_obj::generated::perf_event_attr::__bindgen_anon_3: aya_obj::generated::perf_event_attr__bindgen_ty_3
  6237. pub aya_obj::generated::perf_event_attr::__bindgen_anon_4: aya_obj::generated::perf_event_attr__bindgen_ty_4
  6238. pub aya_obj::generated::perf_event_attr::__reserved_2: aya_obj::generated::__u16
  6239. pub aya_obj::generated::perf_event_attr::__reserved_3: aya_obj::generated::__u32
  6240. pub aya_obj::generated::perf_event_attr::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]>
  6241. pub aya_obj::generated::perf_event_attr::_bitfield_align_1: [u32; 0]
  6242. pub aya_obj::generated::perf_event_attr::aux_sample_size: aya_obj::generated::__u32
  6243. pub aya_obj::generated::perf_event_attr::aux_watermark: aya_obj::generated::__u32
  6244. pub aya_obj::generated::perf_event_attr::bp_type: aya_obj::generated::__u32
  6245. pub aya_obj::generated::perf_event_attr::branch_sample_type: aya_obj::generated::__u64
  6246. pub aya_obj::generated::perf_event_attr::clockid: aya_obj::generated::__s32
  6247. pub aya_obj::generated::perf_event_attr::config: aya_obj::generated::__u64
  6248. pub aya_obj::generated::perf_event_attr::config3: aya_obj::generated::__u64
  6249. pub aya_obj::generated::perf_event_attr::read_format: aya_obj::generated::__u64
  6250. pub aya_obj::generated::perf_event_attr::sample_max_stack: aya_obj::generated::__u16
  6251. pub aya_obj::generated::perf_event_attr::sample_regs_intr: aya_obj::generated::__u64
  6252. pub aya_obj::generated::perf_event_attr::sample_regs_user: aya_obj::generated::__u64
  6253. pub aya_obj::generated::perf_event_attr::sample_stack_user: aya_obj::generated::__u32
  6254. pub aya_obj::generated::perf_event_attr::sample_type: aya_obj::generated::__u64
  6255. pub aya_obj::generated::perf_event_attr::sig_data: aya_obj::generated::__u64
  6256. pub aya_obj::generated::perf_event_attr::size: aya_obj::generated::__u32
  6257. pub aya_obj::generated::perf_event_attr::type_: aya_obj::generated::__u32
  6258. impl aya_obj::generated::perf_event_attr
  6259. pub fn aya_obj::generated::perf_event_attr::__reserved_1(&self) -> aya_obj::generated::__u64
  6260. pub fn aya_obj::generated::perf_event_attr::aux_output(&self) -> aya_obj::generated::__u64
  6261. pub fn aya_obj::generated::perf_event_attr::bpf_event(&self) -> aya_obj::generated::__u64
  6262. pub fn aya_obj::generated::perf_event_attr::build_id(&self) -> aya_obj::generated::__u64
  6263. pub fn aya_obj::generated::perf_event_attr::cgroup(&self) -> aya_obj::generated::__u64
  6264. pub fn aya_obj::generated::perf_event_attr::comm(&self) -> aya_obj::generated::__u64
  6265. pub fn aya_obj::generated::perf_event_attr::comm_exec(&self) -> aya_obj::generated::__u64
  6266. pub fn aya_obj::generated::perf_event_attr::context_switch(&self) -> aya_obj::generated::__u64
  6267. pub fn aya_obj::generated::perf_event_attr::disabled(&self) -> aya_obj::generated::__u64
  6268. pub fn aya_obj::generated::perf_event_attr::enable_on_exec(&self) -> aya_obj::generated::__u64
  6269. pub fn aya_obj::generated::perf_event_attr::exclude_callchain_kernel(&self) -> aya_obj::generated::__u64
  6270. pub fn aya_obj::generated::perf_event_attr::exclude_callchain_user(&self) -> aya_obj::generated::__u64
  6271. pub fn aya_obj::generated::perf_event_attr::exclude_guest(&self) -> aya_obj::generated::__u64
  6272. pub fn aya_obj::generated::perf_event_attr::exclude_host(&self) -> aya_obj::generated::__u64
  6273. pub fn aya_obj::generated::perf_event_attr::exclude_hv(&self) -> aya_obj::generated::__u64
  6274. pub fn aya_obj::generated::perf_event_attr::exclude_idle(&self) -> aya_obj::generated::__u64
  6275. pub fn aya_obj::generated::perf_event_attr::exclude_kernel(&self) -> aya_obj::generated::__u64
  6276. pub fn aya_obj::generated::perf_event_attr::exclude_user(&self) -> aya_obj::generated::__u64
  6277. pub fn aya_obj::generated::perf_event_attr::exclusive(&self) -> aya_obj::generated::__u64
  6278. pub fn aya_obj::generated::perf_event_attr::freq(&self) -> aya_obj::generated::__u64
  6279. pub fn aya_obj::generated::perf_event_attr::inherit(&self) -> aya_obj::generated::__u64
  6280. pub fn aya_obj::generated::perf_event_attr::inherit_stat(&self) -> aya_obj::generated::__u64
  6281. pub fn aya_obj::generated::perf_event_attr::inherit_thread(&self) -> aya_obj::generated::__u64
  6282. pub fn aya_obj::generated::perf_event_attr::ksymbol(&self) -> aya_obj::generated::__u64
  6283. pub fn aya_obj::generated::perf_event_attr::mmap(&self) -> aya_obj::generated::__u64
  6284. pub fn aya_obj::generated::perf_event_attr::mmap2(&self) -> aya_obj::generated::__u64
  6285. pub fn aya_obj::generated::perf_event_attr::mmap_data(&self) -> aya_obj::generated::__u64
  6286. pub fn aya_obj::generated::perf_event_attr::namespaces(&self) -> aya_obj::generated::__u64
  6287. pub fn aya_obj::generated::perf_event_attr::new_bitfield_1(disabled: aya_obj::generated::__u64, inherit: aya_obj::generated::__u64, pinned: aya_obj::generated::__u64, exclusive: aya_obj::generated::__u64, exclude_user: aya_obj::generated::__u64, exclude_kernel: aya_obj::generated::__u64, exclude_hv: aya_obj::generated::__u64, exclude_idle: aya_obj::generated::__u64, mmap: aya_obj::generated::__u64, comm: aya_obj::generated::__u64, freq: aya_obj::generated::__u64, inherit_stat: aya_obj::generated::__u64, enable_on_exec: aya_obj::generated::__u64, task: aya_obj::generated::__u64, watermark: aya_obj::generated::__u64, precise_ip: aya_obj::generated::__u64, mmap_data: aya_obj::generated::__u64, sample_id_all: aya_obj::generated::__u64, exclude_host: aya_obj::generated::__u64, exclude_guest: aya_obj::generated::__u64, exclude_callchain_kernel: aya_obj::generated::__u64, exclude_callchain_user: aya_obj::generated::__u64, mmap2: aya_obj::generated::__u64, comm_exec: aya_obj::generated::__u64, use_clockid: aya_obj::generated::__u64, context_switch: aya_obj::generated::__u64, write_backward: aya_obj::generated::__u64, namespaces: aya_obj::generated::__u64, ksymbol: aya_obj::generated::__u64, bpf_event: aya_obj::generated::__u64, aux_output: aya_obj::generated::__u64, cgroup: aya_obj::generated::__u64, text_poke: aya_obj::generated::__u64, build_id: aya_obj::generated::__u64, inherit_thread: aya_obj::generated::__u64, remove_on_exec: aya_obj::generated::__u64, sigtrap: aya_obj::generated::__u64, __reserved_1: aya_obj::generated::__u64) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]>
  6288. pub fn aya_obj::generated::perf_event_attr::pinned(&self) -> aya_obj::generated::__u64
  6289. pub fn aya_obj::generated::perf_event_attr::precise_ip(&self) -> aya_obj::generated::__u64
  6290. pub fn aya_obj::generated::perf_event_attr::remove_on_exec(&self) -> aya_obj::generated::__u64
  6291. pub fn aya_obj::generated::perf_event_attr::sample_id_all(&self) -> aya_obj::generated::__u64
  6292. pub fn aya_obj::generated::perf_event_attr::set___reserved_1(&mut self, val: aya_obj::generated::__u64)
  6293. pub fn aya_obj::generated::perf_event_attr::set_aux_output(&mut self, val: aya_obj::generated::__u64)
  6294. pub fn aya_obj::generated::perf_event_attr::set_bpf_event(&mut self, val: aya_obj::generated::__u64)
  6295. pub fn aya_obj::generated::perf_event_attr::set_build_id(&mut self, val: aya_obj::generated::__u64)
  6296. pub fn aya_obj::generated::perf_event_attr::set_cgroup(&mut self, val: aya_obj::generated::__u64)
  6297. pub fn aya_obj::generated::perf_event_attr::set_comm(&mut self, val: aya_obj::generated::__u64)
  6298. pub fn aya_obj::generated::perf_event_attr::set_comm_exec(&mut self, val: aya_obj::generated::__u64)
  6299. pub fn aya_obj::generated::perf_event_attr::set_context_switch(&mut self, val: aya_obj::generated::__u64)
  6300. pub fn aya_obj::generated::perf_event_attr::set_disabled(&mut self, val: aya_obj::generated::__u64)
  6301. pub fn aya_obj::generated::perf_event_attr::set_enable_on_exec(&mut self, val: aya_obj::generated::__u64)
  6302. pub fn aya_obj::generated::perf_event_attr::set_exclude_callchain_kernel(&mut self, val: aya_obj::generated::__u64)
  6303. pub fn aya_obj::generated::perf_event_attr::set_exclude_callchain_user(&mut self, val: aya_obj::generated::__u64)
  6304. pub fn aya_obj::generated::perf_event_attr::set_exclude_guest(&mut self, val: aya_obj::generated::__u64)
  6305. pub fn aya_obj::generated::perf_event_attr::set_exclude_host(&mut self, val: aya_obj::generated::__u64)
  6306. pub fn aya_obj::generated::perf_event_attr::set_exclude_hv(&mut self, val: aya_obj::generated::__u64)
  6307. pub fn aya_obj::generated::perf_event_attr::set_exclude_idle(&mut self, val: aya_obj::generated::__u64)
  6308. pub fn aya_obj::generated::perf_event_attr::set_exclude_kernel(&mut self, val: aya_obj::generated::__u64)
  6309. pub fn aya_obj::generated::perf_event_attr::set_exclude_user(&mut self, val: aya_obj::generated::__u64)
  6310. pub fn aya_obj::generated::perf_event_attr::set_exclusive(&mut self, val: aya_obj::generated::__u64)
  6311. pub fn aya_obj::generated::perf_event_attr::set_freq(&mut self, val: aya_obj::generated::__u64)
  6312. pub fn aya_obj::generated::perf_event_attr::set_inherit(&mut self, val: aya_obj::generated::__u64)
  6313. pub fn aya_obj::generated::perf_event_attr::set_inherit_stat(&mut self, val: aya_obj::generated::__u64)
  6314. pub fn aya_obj::generated::perf_event_attr::set_inherit_thread(&mut self, val: aya_obj::generated::__u64)
  6315. pub fn aya_obj::generated::perf_event_attr::set_ksymbol(&mut self, val: aya_obj::generated::__u64)
  6316. pub fn aya_obj::generated::perf_event_attr::set_mmap(&mut self, val: aya_obj::generated::__u64)
  6317. pub fn aya_obj::generated::perf_event_attr::set_mmap2(&mut self, val: aya_obj::generated::__u64)
  6318. pub fn aya_obj::generated::perf_event_attr::set_mmap_data(&mut self, val: aya_obj::generated::__u64)
  6319. pub fn aya_obj::generated::perf_event_attr::set_namespaces(&mut self, val: aya_obj::generated::__u64)
  6320. pub fn aya_obj::generated::perf_event_attr::set_pinned(&mut self, val: aya_obj::generated::__u64)
  6321. pub fn aya_obj::generated::perf_event_attr::set_precise_ip(&mut self, val: aya_obj::generated::__u64)
  6322. pub fn aya_obj::generated::perf_event_attr::set_remove_on_exec(&mut self, val: aya_obj::generated::__u64)
  6323. pub fn aya_obj::generated::perf_event_attr::set_sample_id_all(&mut self, val: aya_obj::generated::__u64)
  6324. pub fn aya_obj::generated::perf_event_attr::set_sigtrap(&mut self, val: aya_obj::generated::__u64)
  6325. pub fn aya_obj::generated::perf_event_attr::set_task(&mut self, val: aya_obj::generated::__u64)
  6326. pub fn aya_obj::generated::perf_event_attr::set_text_poke(&mut self, val: aya_obj::generated::__u64)
  6327. pub fn aya_obj::generated::perf_event_attr::set_use_clockid(&mut self, val: aya_obj::generated::__u64)
  6328. pub fn aya_obj::generated::perf_event_attr::set_watermark(&mut self, val: aya_obj::generated::__u64)
  6329. pub fn aya_obj::generated::perf_event_attr::set_write_backward(&mut self, val: aya_obj::generated::__u64)
  6330. pub fn aya_obj::generated::perf_event_attr::sigtrap(&self) -> aya_obj::generated::__u64
  6331. pub fn aya_obj::generated::perf_event_attr::task(&self) -> aya_obj::generated::__u64
  6332. pub fn aya_obj::generated::perf_event_attr::text_poke(&self) -> aya_obj::generated::__u64
  6333. pub fn aya_obj::generated::perf_event_attr::use_clockid(&self) -> aya_obj::generated::__u64
  6334. pub fn aya_obj::generated::perf_event_attr::watermark(&self) -> aya_obj::generated::__u64
  6335. pub fn aya_obj::generated::perf_event_attr::write_backward(&self) -> aya_obj::generated::__u64
  6336. impl core::clone::Clone for aya_obj::generated::perf_event_attr
  6337. pub fn aya_obj::generated::perf_event_attr::clone(&self) -> aya_obj::generated::perf_event_attr
  6338. impl core::marker::Copy for aya_obj::generated::perf_event_attr
  6339. impl core::marker::Freeze for aya_obj::generated::perf_event_attr
  6340. impl core::marker::Send for aya_obj::generated::perf_event_attr
  6341. impl core::marker::Sync for aya_obj::generated::perf_event_attr
  6342. impl core::marker::Unpin for aya_obj::generated::perf_event_attr
  6343. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_attr
  6344. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_attr
  6345. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_attr where U: core::convert::From<T>
  6346. pub fn aya_obj::generated::perf_event_attr::into(self) -> U
  6347. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_attr where U: core::convert::Into<T>
  6348. pub type aya_obj::generated::perf_event_attr::Error = core::convert::Infallible
  6349. pub fn aya_obj::generated::perf_event_attr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6350. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_attr where U: core::convert::TryFrom<T>
  6351. pub type aya_obj::generated::perf_event_attr::Error = <U as core::convert::TryFrom<T>>::Error
  6352. pub fn aya_obj::generated::perf_event_attr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6353. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_attr where T: core::clone::Clone
  6354. pub type aya_obj::generated::perf_event_attr::Owned = T
  6355. pub fn aya_obj::generated::perf_event_attr::clone_into(&self, target: &mut T)
  6356. pub fn aya_obj::generated::perf_event_attr::to_owned(&self) -> T
  6357. impl<T> core::any::Any for aya_obj::generated::perf_event_attr where T: 'static + core::marker::Sized
  6358. pub fn aya_obj::generated::perf_event_attr::type_id(&self) -> core::any::TypeId
  6359. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_attr where T: core::marker::Sized
  6360. pub fn aya_obj::generated::perf_event_attr::borrow(&self) -> &T
  6361. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_attr where T: core::marker::Sized
  6362. pub fn aya_obj::generated::perf_event_attr::borrow_mut(&mut self) -> &mut T
  6363. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr where T: core::clone::Clone
  6364. pub unsafe fn aya_obj::generated::perf_event_attr::clone_to_uninit(&self, dst: *mut T)
  6365. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_attr where T: core::marker::Copy
  6366. pub unsafe fn aya_obj::generated::perf_event_attr::clone_to_uninit(&self, dst: *mut T)
  6367. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_attr
  6368. pub fn aya_obj::generated::perf_event_attr::from(t: T) -> T
  6369. #[repr(C)] pub struct aya_obj::generated::perf_event_header
  6370. pub aya_obj::generated::perf_event_header::misc: aya_obj::generated::__u16
  6371. pub aya_obj::generated::perf_event_header::size: aya_obj::generated::__u16
  6372. pub aya_obj::generated::perf_event_header::type_: aya_obj::generated::__u32
  6373. impl core::clone::Clone for aya_obj::generated::perf_event_header
  6374. pub fn aya_obj::generated::perf_event_header::clone(&self) -> aya_obj::generated::perf_event_header
  6375. impl core::fmt::Debug for aya_obj::generated::perf_event_header
  6376. pub fn aya_obj::generated::perf_event_header::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6377. impl core::marker::Copy for aya_obj::generated::perf_event_header
  6378. impl core::marker::Freeze for aya_obj::generated::perf_event_header
  6379. impl core::marker::Send for aya_obj::generated::perf_event_header
  6380. impl core::marker::Sync for aya_obj::generated::perf_event_header
  6381. impl core::marker::Unpin for aya_obj::generated::perf_event_header
  6382. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_header
  6383. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_header
  6384. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_header where U: core::convert::From<T>
  6385. pub fn aya_obj::generated::perf_event_header::into(self) -> U
  6386. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_header where U: core::convert::Into<T>
  6387. pub type aya_obj::generated::perf_event_header::Error = core::convert::Infallible
  6388. pub fn aya_obj::generated::perf_event_header::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6389. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_header where U: core::convert::TryFrom<T>
  6390. pub type aya_obj::generated::perf_event_header::Error = <U as core::convert::TryFrom<T>>::Error
  6391. pub fn aya_obj::generated::perf_event_header::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6392. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_header where T: core::clone::Clone
  6393. pub type aya_obj::generated::perf_event_header::Owned = T
  6394. pub fn aya_obj::generated::perf_event_header::clone_into(&self, target: &mut T)
  6395. pub fn aya_obj::generated::perf_event_header::to_owned(&self) -> T
  6396. impl<T> core::any::Any for aya_obj::generated::perf_event_header where T: 'static + core::marker::Sized
  6397. pub fn aya_obj::generated::perf_event_header::type_id(&self) -> core::any::TypeId
  6398. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_header where T: core::marker::Sized
  6399. pub fn aya_obj::generated::perf_event_header::borrow(&self) -> &T
  6400. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_header where T: core::marker::Sized
  6401. pub fn aya_obj::generated::perf_event_header::borrow_mut(&mut self) -> &mut T
  6402. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_header where T: core::clone::Clone
  6403. pub unsafe fn aya_obj::generated::perf_event_header::clone_to_uninit(&self, dst: *mut T)
  6404. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_header where T: core::marker::Copy
  6405. pub unsafe fn aya_obj::generated::perf_event_header::clone_to_uninit(&self, dst: *mut T)
  6406. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_header
  6407. pub fn aya_obj::generated::perf_event_header::from(t: T) -> T
  6408. #[repr(C)] pub struct aya_obj::generated::perf_event_mmap_page
  6409. pub aya_obj::generated::perf_event_mmap_page::__bindgen_anon_1: aya_obj::generated::perf_event_mmap_page__bindgen_ty_1
  6410. pub aya_obj::generated::perf_event_mmap_page::__reserved: [aya_obj::generated::__u8; 928]
  6411. pub aya_obj::generated::perf_event_mmap_page::__reserved_1: aya_obj::generated::__u32
  6412. pub aya_obj::generated::perf_event_mmap_page::aux_head: aya_obj::generated::__u64
  6413. pub aya_obj::generated::perf_event_mmap_page::aux_offset: aya_obj::generated::__u64
  6414. pub aya_obj::generated::perf_event_mmap_page::aux_size: aya_obj::generated::__u64
  6415. pub aya_obj::generated::perf_event_mmap_page::aux_tail: aya_obj::generated::__u64
  6416. pub aya_obj::generated::perf_event_mmap_page::compat_version: aya_obj::generated::__u32
  6417. pub aya_obj::generated::perf_event_mmap_page::data_head: aya_obj::generated::__u64
  6418. pub aya_obj::generated::perf_event_mmap_page::data_offset: aya_obj::generated::__u64
  6419. pub aya_obj::generated::perf_event_mmap_page::data_size: aya_obj::generated::__u64
  6420. pub aya_obj::generated::perf_event_mmap_page::data_tail: aya_obj::generated::__u64
  6421. pub aya_obj::generated::perf_event_mmap_page::index: aya_obj::generated::__u32
  6422. pub aya_obj::generated::perf_event_mmap_page::lock: aya_obj::generated::__u32
  6423. pub aya_obj::generated::perf_event_mmap_page::offset: aya_obj::generated::__s64
  6424. pub aya_obj::generated::perf_event_mmap_page::pmc_width: aya_obj::generated::__u16
  6425. pub aya_obj::generated::perf_event_mmap_page::size: aya_obj::generated::__u32
  6426. pub aya_obj::generated::perf_event_mmap_page::time_cycles: aya_obj::generated::__u64
  6427. pub aya_obj::generated::perf_event_mmap_page::time_enabled: aya_obj::generated::__u64
  6428. pub aya_obj::generated::perf_event_mmap_page::time_mask: aya_obj::generated::__u64
  6429. pub aya_obj::generated::perf_event_mmap_page::time_mult: aya_obj::generated::__u32
  6430. pub aya_obj::generated::perf_event_mmap_page::time_offset: aya_obj::generated::__u64
  6431. pub aya_obj::generated::perf_event_mmap_page::time_running: aya_obj::generated::__u64
  6432. pub aya_obj::generated::perf_event_mmap_page::time_shift: aya_obj::generated::__u16
  6433. pub aya_obj::generated::perf_event_mmap_page::time_zero: aya_obj::generated::__u64
  6434. pub aya_obj::generated::perf_event_mmap_page::version: aya_obj::generated::__u32
  6435. impl core::clone::Clone for aya_obj::generated::perf_event_mmap_page
  6436. pub fn aya_obj::generated::perf_event_mmap_page::clone(&self) -> aya_obj::generated::perf_event_mmap_page
  6437. impl core::marker::Copy for aya_obj::generated::perf_event_mmap_page
  6438. impl core::marker::Freeze for aya_obj::generated::perf_event_mmap_page
  6439. impl core::marker::Send for aya_obj::generated::perf_event_mmap_page
  6440. impl core::marker::Sync for aya_obj::generated::perf_event_mmap_page
  6441. impl core::marker::Unpin for aya_obj::generated::perf_event_mmap_page
  6442. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_mmap_page
  6443. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_mmap_page
  6444. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_mmap_page where U: core::convert::From<T>
  6445. pub fn aya_obj::generated::perf_event_mmap_page::into(self) -> U
  6446. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_mmap_page where U: core::convert::Into<T>
  6447. pub type aya_obj::generated::perf_event_mmap_page::Error = core::convert::Infallible
  6448. pub fn aya_obj::generated::perf_event_mmap_page::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6449. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_mmap_page where U: core::convert::TryFrom<T>
  6450. pub type aya_obj::generated::perf_event_mmap_page::Error = <U as core::convert::TryFrom<T>>::Error
  6451. pub fn aya_obj::generated::perf_event_mmap_page::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6452. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_mmap_page where T: core::clone::Clone
  6453. pub type aya_obj::generated::perf_event_mmap_page::Owned = T
  6454. pub fn aya_obj::generated::perf_event_mmap_page::clone_into(&self, target: &mut T)
  6455. pub fn aya_obj::generated::perf_event_mmap_page::to_owned(&self) -> T
  6456. impl<T> core::any::Any for aya_obj::generated::perf_event_mmap_page where T: 'static + core::marker::Sized
  6457. pub fn aya_obj::generated::perf_event_mmap_page::type_id(&self) -> core::any::TypeId
  6458. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_mmap_page where T: core::marker::Sized
  6459. pub fn aya_obj::generated::perf_event_mmap_page::borrow(&self) -> &T
  6460. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_mmap_page where T: core::marker::Sized
  6461. pub fn aya_obj::generated::perf_event_mmap_page::borrow_mut(&mut self) -> &mut T
  6462. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_mmap_page where T: core::clone::Clone
  6463. pub unsafe fn aya_obj::generated::perf_event_mmap_page::clone_to_uninit(&self, dst: *mut T)
  6464. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_mmap_page where T: core::marker::Copy
  6465. pub unsafe fn aya_obj::generated::perf_event_mmap_page::clone_to_uninit(&self, dst: *mut T)
  6466. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_mmap_page
  6467. pub fn aya_obj::generated::perf_event_mmap_page::from(t: T) -> T
  6468. #[repr(C)] pub struct aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6469. pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::_bitfield_1: aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]>
  6470. pub aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::_bitfield_align_1: [u64; 0]
  6471. impl aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6472. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_____res(&self) -> aya_obj::generated::__u64
  6473. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_bit0(&self) -> aya_obj::generated::__u64
  6474. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_bit0_is_deprecated(&self) -> aya_obj::generated::__u64
  6475. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_rdpmc(&self) -> aya_obj::generated::__u64
  6476. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_time(&self) -> aya_obj::generated::__u64
  6477. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_time_short(&self) -> aya_obj::generated::__u64
  6478. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::cap_user_time_zero(&self) -> aya_obj::generated::__u64
  6479. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::new_bitfield_1(cap_bit0: aya_obj::generated::__u64, cap_bit0_is_deprecated: aya_obj::generated::__u64, cap_user_rdpmc: aya_obj::generated::__u64, cap_user_time: aya_obj::generated::__u64, cap_user_time_zero: aya_obj::generated::__u64, cap_user_time_short: aya_obj::generated::__u64, cap_____res: aya_obj::generated::__u64) -> aya_obj::generated::__BindgenBitfieldUnit<[u8; 8]>
  6480. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_____res(&mut self, val: aya_obj::generated::__u64)
  6481. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_bit0(&mut self, val: aya_obj::generated::__u64)
  6482. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_bit0_is_deprecated(&mut self, val: aya_obj::generated::__u64)
  6483. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_rdpmc(&mut self, val: aya_obj::generated::__u64)
  6484. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_time(&mut self, val: aya_obj::generated::__u64)
  6485. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_time_short(&mut self, val: aya_obj::generated::__u64)
  6486. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::set_cap_user_time_zero(&mut self, val: aya_obj::generated::__u64)
  6487. impl core::clone::Clone for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6488. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::clone(&self) -> aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6489. impl core::fmt::Debug for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6490. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6491. impl core::marker::Copy for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6492. impl core::marker::Freeze for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6493. impl core::marker::Send for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6494. impl core::marker::Sync for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6495. impl core::marker::Unpin for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6496. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6497. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6498. impl<T, U> core::convert::Into<U> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where U: core::convert::From<T>
  6499. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::into(self) -> U
  6500. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where U: core::convert::Into<T>
  6501. pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::Error = core::convert::Infallible
  6502. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6503. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where U: core::convert::TryFrom<T>
  6504. pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::Error = <U as core::convert::TryFrom<T>>::Error
  6505. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6506. impl<T> alloc::borrow::ToOwned for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  6507. pub type aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::Owned = T
  6508. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::clone_into(&self, target: &mut T)
  6509. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::to_owned(&self) -> T
  6510. impl<T> core::any::Any for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: 'static + core::marker::Sized
  6511. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::type_id(&self) -> core::any::TypeId
  6512. impl<T> core::borrow::Borrow<T> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  6513. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::borrow(&self) -> &T
  6514. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Sized
  6515. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::borrow_mut(&mut self) -> &mut T
  6516. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::clone::Clone
  6517. pub unsafe fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  6518. impl<T> core::clone::CloneToUninit for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 where T: core::marker::Copy
  6519. pub unsafe fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::clone_to_uninit(&self, dst: *mut T)
  6520. impl<T> core::convert::From<T> for aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1
  6521. pub fn aya_obj::generated::perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1::from(t: T) -> T
  6522. #[repr(C)] pub struct aya_obj::generated::tcmsg
  6523. pub aya_obj::generated::tcmsg::tcm__pad1: core::ffi::c_uchar
  6524. pub aya_obj::generated::tcmsg::tcm__pad2: core::ffi::c_ushort
  6525. pub aya_obj::generated::tcmsg::tcm_family: core::ffi::c_uchar
  6526. pub aya_obj::generated::tcmsg::tcm_handle: aya_obj::generated::__u32
  6527. pub aya_obj::generated::tcmsg::tcm_ifindex: core::ffi::c_int
  6528. pub aya_obj::generated::tcmsg::tcm_info: aya_obj::generated::__u32
  6529. pub aya_obj::generated::tcmsg::tcm_parent: aya_obj::generated::__u32
  6530. impl core::clone::Clone for aya_obj::generated::tcmsg
  6531. pub fn aya_obj::generated::tcmsg::clone(&self) -> aya_obj::generated::tcmsg
  6532. impl core::fmt::Debug for aya_obj::generated::tcmsg
  6533. pub fn aya_obj::generated::tcmsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6534. impl core::marker::Copy for aya_obj::generated::tcmsg
  6535. impl core::marker::Freeze for aya_obj::generated::tcmsg
  6536. impl core::marker::Send for aya_obj::generated::tcmsg
  6537. impl core::marker::Sync for aya_obj::generated::tcmsg
  6538. impl core::marker::Unpin for aya_obj::generated::tcmsg
  6539. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::generated::tcmsg
  6540. impl core::panic::unwind_safe::UnwindSafe for aya_obj::generated::tcmsg
  6541. impl<T, U> core::convert::Into<U> for aya_obj::generated::tcmsg where U: core::convert::From<T>
  6542. pub fn aya_obj::generated::tcmsg::into(self) -> U
  6543. impl<T, U> core::convert::TryFrom<U> for aya_obj::generated::tcmsg where U: core::convert::Into<T>
  6544. pub type aya_obj::generated::tcmsg::Error = core::convert::Infallible
  6545. pub fn aya_obj::generated::tcmsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6546. impl<T, U> core::convert::TryInto<U> for aya_obj::generated::tcmsg where U: core::convert::TryFrom<T>
  6547. pub type aya_obj::generated::tcmsg::Error = <U as core::convert::TryFrom<T>>::Error
  6548. pub fn aya_obj::generated::tcmsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6549. impl<T> alloc::borrow::ToOwned for aya_obj::generated::tcmsg where T: core::clone::Clone
  6550. pub type aya_obj::generated::tcmsg::Owned = T
  6551. pub fn aya_obj::generated::tcmsg::clone_into(&self, target: &mut T)
  6552. pub fn aya_obj::generated::tcmsg::to_owned(&self) -> T
  6553. impl<T> core::any::Any for aya_obj::generated::tcmsg where T: 'static + core::marker::Sized
  6554. pub fn aya_obj::generated::tcmsg::type_id(&self) -> core::any::TypeId
  6555. impl<T> core::borrow::Borrow<T> for aya_obj::generated::tcmsg where T: core::marker::Sized
  6556. pub fn aya_obj::generated::tcmsg::borrow(&self) -> &T
  6557. impl<T> core::borrow::BorrowMut<T> for aya_obj::generated::tcmsg where T: core::marker::Sized
  6558. pub fn aya_obj::generated::tcmsg::borrow_mut(&mut self) -> &mut T
  6559. impl<T> core::clone::CloneToUninit for aya_obj::generated::tcmsg where T: core::clone::Clone
  6560. pub unsafe fn aya_obj::generated::tcmsg::clone_to_uninit(&self, dst: *mut T)
  6561. impl<T> core::clone::CloneToUninit for aya_obj::generated::tcmsg where T: core::marker::Copy
  6562. pub unsafe fn aya_obj::generated::tcmsg::clone_to_uninit(&self, dst: *mut T)
  6563. impl<T> core::convert::From<T> for aya_obj::generated::tcmsg
  6564. pub fn aya_obj::generated::tcmsg::from(t: T) -> T
  6565. pub const aya_obj::generated::AYA_PERF_EVENT_IOC_DISABLE: core::ffi::c_int
  6566. pub const aya_obj::generated::AYA_PERF_EVENT_IOC_ENABLE: core::ffi::c_int
  6567. pub const aya_obj::generated::AYA_PERF_EVENT_IOC_SET_BPF: core::ffi::c_int
  6568. pub const aya_obj::generated::BPF_ALU: u32
  6569. pub const aya_obj::generated::BPF_ALU64: u32
  6570. pub const aya_obj::generated::BPF_ANY: aya_obj::generated::_bindgen_ty_4
  6571. pub const aya_obj::generated::BPF_B: u32
  6572. pub const aya_obj::generated::BPF_CALL: u32
  6573. pub const aya_obj::generated::BPF_DW: u32
  6574. pub const aya_obj::generated::BPF_EXIST: aya_obj::generated::_bindgen_ty_4
  6575. pub const aya_obj::generated::BPF_F_ADJ_ROOM_DECAP_L3_IPV4: aya_obj::generated::_bindgen_ty_17
  6576. pub const aya_obj::generated::BPF_F_ADJ_ROOM_DECAP_L3_IPV6: aya_obj::generated::_bindgen_ty_17
  6577. pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L2_ETH: aya_obj::generated::_bindgen_ty_17
  6578. pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L3_IPV4: aya_obj::generated::_bindgen_ty_17
  6579. pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L3_IPV6: aya_obj::generated::_bindgen_ty_17
  6580. pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L4_GRE: aya_obj::generated::_bindgen_ty_17
  6581. pub const aya_obj::generated::BPF_F_ADJ_ROOM_ENCAP_L4_UDP: aya_obj::generated::_bindgen_ty_17
  6582. pub const aya_obj::generated::BPF_F_ADJ_ROOM_FIXED_GSO: aya_obj::generated::_bindgen_ty_17
  6583. pub const aya_obj::generated::BPF_F_ADJ_ROOM_NO_CSUM_RESET: aya_obj::generated::_bindgen_ty_17
  6584. pub const aya_obj::generated::BPF_F_AFTER: u32
  6585. pub const aya_obj::generated::BPF_F_ALLOW_MULTI: u32
  6586. pub const aya_obj::generated::BPF_F_ALLOW_OVERRIDE: u32
  6587. pub const aya_obj::generated::BPF_F_ANY_ALIGNMENT: u32
  6588. pub const aya_obj::generated::BPF_F_BEFORE: u32
  6589. pub const aya_obj::generated::BPF_F_BPRM_SECUREEXEC: aya_obj::generated::_bindgen_ty_26
  6590. pub const aya_obj::generated::BPF_F_BROADCAST: aya_obj::generated::_bindgen_ty_27
  6591. pub const aya_obj::generated::BPF_F_CLONE: aya_obj::generated::_bindgen_ty_5
  6592. pub const aya_obj::generated::BPF_F_CTXLEN_MASK: aya_obj::generated::_bindgen_ty_14
  6593. pub const aya_obj::generated::BPF_F_CURRENT_CPU: aya_obj::generated::_bindgen_ty_14
  6594. pub const aya_obj::generated::BPF_F_CURRENT_NETNS: aya_obj::generated::_bindgen_ty_15
  6595. pub const aya_obj::generated::BPF_F_DONT_FRAGMENT: aya_obj::generated::_bindgen_ty_12
  6596. pub const aya_obj::generated::BPF_F_EXCLUDE_INGRESS: aya_obj::generated::_bindgen_ty_27
  6597. pub const aya_obj::generated::BPF_F_FAST_STACK_CMP: aya_obj::generated::_bindgen_ty_11
  6598. pub const aya_obj::generated::BPF_F_GET_BRANCH_RECORDS_SIZE: aya_obj::generated::_bindgen_ty_21
  6599. pub const aya_obj::generated::BPF_F_HDR_FIELD_MASK: aya_obj::generated::_bindgen_ty_7
  6600. pub const aya_obj::generated::BPF_F_ID: u32
  6601. pub const aya_obj::generated::BPF_F_INDEX_MASK: aya_obj::generated::_bindgen_ty_14
  6602. pub const aya_obj::generated::BPF_F_INGRESS: aya_obj::generated::_bindgen_ty_9
  6603. pub const aya_obj::generated::BPF_F_INNER_MAP: aya_obj::generated::_bindgen_ty_5
  6604. pub const aya_obj::generated::BPF_F_INVALIDATE_HASH: aya_obj::generated::_bindgen_ty_6
  6605. pub const aya_obj::generated::BPF_F_KPROBE_MULTI_RETURN: aya_obj::generated::_bindgen_ty_2
  6606. pub const aya_obj::generated::BPF_F_LINK: aya_obj::generated::_bindgen_ty_5
  6607. pub const aya_obj::generated::BPF_F_LOCK: aya_obj::generated::_bindgen_ty_4
  6608. pub const aya_obj::generated::BPF_F_MARK_ENFORCE: aya_obj::generated::_bindgen_ty_8
  6609. pub const aya_obj::generated::BPF_F_MARK_MANGLED_0: aya_obj::generated::_bindgen_ty_8
  6610. pub const aya_obj::generated::BPF_F_MMAPABLE: aya_obj::generated::_bindgen_ty_5
  6611. pub const aya_obj::generated::BPF_F_NETFILTER_IP_DEFRAG: u32
  6612. pub const aya_obj::generated::BPF_F_NO_COMMON_LRU: aya_obj::generated::_bindgen_ty_5
  6613. pub const aya_obj::generated::BPF_F_NO_PREALLOC: aya_obj::generated::_bindgen_ty_5
  6614. pub const aya_obj::generated::BPF_F_NO_TUNNEL_KEY: aya_obj::generated::_bindgen_ty_12
  6615. pub const aya_obj::generated::BPF_F_NO_USER_CONV: aya_obj::generated::_bindgen_ty_5
  6616. pub const aya_obj::generated::BPF_F_NUMA_NODE: aya_obj::generated::_bindgen_ty_5
  6617. pub const aya_obj::generated::BPF_F_PATH_FD: aya_obj::generated::_bindgen_ty_5
  6618. pub const aya_obj::generated::BPF_F_PRESERVE_ELEMS: aya_obj::generated::_bindgen_ty_5
  6619. pub const aya_obj::generated::BPF_F_PSEUDO_HDR: aya_obj::generated::_bindgen_ty_8
  6620. pub const aya_obj::generated::BPF_F_QUERY_EFFECTIVE: u32
  6621. pub const aya_obj::generated::BPF_F_RDONLY: aya_obj::generated::_bindgen_ty_5
  6622. pub const aya_obj::generated::BPF_F_RDONLY_PROG: aya_obj::generated::_bindgen_ty_5
  6623. pub const aya_obj::generated::BPF_F_RECOMPUTE_CSUM: aya_obj::generated::_bindgen_ty_6
  6624. pub const aya_obj::generated::BPF_F_REPLACE: u32
  6625. pub const aya_obj::generated::BPF_F_REUSE_STACKID: aya_obj::generated::_bindgen_ty_11
  6626. pub const aya_obj::generated::BPF_F_SEGV_ON_FAULT: aya_obj::generated::_bindgen_ty_5
  6627. pub const aya_obj::generated::BPF_F_SEQ_NUMBER: aya_obj::generated::_bindgen_ty_12
  6628. pub const aya_obj::generated::BPF_F_SKIP_FIELD_MASK: aya_obj::generated::_bindgen_ty_11
  6629. pub const aya_obj::generated::BPF_F_SLEEPABLE: u32
  6630. pub const aya_obj::generated::BPF_F_STACK_BUILD_ID: aya_obj::generated::_bindgen_ty_5
  6631. pub const aya_obj::generated::BPF_F_STRICT_ALIGNMENT: u32
  6632. pub const aya_obj::generated::BPF_F_SYSCTL_BASE_NAME: aya_obj::generated::_bindgen_ty_19
  6633. pub const aya_obj::generated::BPF_F_TEST_REG_INVARIANTS: u32
  6634. pub const aya_obj::generated::BPF_F_TEST_RND_HI32: u32
  6635. pub const aya_obj::generated::BPF_F_TEST_RUN_ON_CPU: u32
  6636. pub const aya_obj::generated::BPF_F_TEST_STATE_FREQ: u32
  6637. pub const aya_obj::generated::BPF_F_TEST_XDP_LIVE_FRAMES: u32
  6638. pub const aya_obj::generated::BPF_F_TIMER_ABS: aya_obj::generated::_bindgen_ty_41
  6639. pub const aya_obj::generated::BPF_F_TIMER_CPU_PIN: aya_obj::generated::_bindgen_ty_41
  6640. pub const aya_obj::generated::BPF_F_TOKEN_FD: aya_obj::generated::_bindgen_ty_5
  6641. pub const aya_obj::generated::BPF_F_TUNINFO_FLAGS: aya_obj::generated::_bindgen_ty_13
  6642. pub const aya_obj::generated::BPF_F_TUNINFO_IPV6: aya_obj::generated::_bindgen_ty_10
  6643. pub const aya_obj::generated::BPF_F_UPROBE_MULTI_RETURN: aya_obj::generated::_bindgen_ty_3
  6644. pub const aya_obj::generated::BPF_F_USER_BUILD_ID: aya_obj::generated::_bindgen_ty_11
  6645. pub const aya_obj::generated::BPF_F_USER_STACK: aya_obj::generated::_bindgen_ty_11
  6646. pub const aya_obj::generated::BPF_F_VTYPE_BTF_OBJ_FD: aya_obj::generated::_bindgen_ty_5
  6647. pub const aya_obj::generated::BPF_F_WRONLY: aya_obj::generated::_bindgen_ty_5
  6648. pub const aya_obj::generated::BPF_F_WRONLY_PROG: aya_obj::generated::_bindgen_ty_5
  6649. pub const aya_obj::generated::BPF_F_XDP_DEV_BOUND_ONLY: u32
  6650. pub const aya_obj::generated::BPF_F_XDP_HAS_FRAGS: u32
  6651. pub const aya_obj::generated::BPF_F_ZERO_CSUM_TX: aya_obj::generated::_bindgen_ty_12
  6652. pub const aya_obj::generated::BPF_F_ZERO_SEED: aya_obj::generated::_bindgen_ty_5
  6653. pub const aya_obj::generated::BPF_H: u32
  6654. pub const aya_obj::generated::BPF_JMP: u32
  6655. pub const aya_obj::generated::BPF_K: u32
  6656. pub const aya_obj::generated::BPF_LD: u32
  6657. pub const aya_obj::generated::BPF_LDX: u32
  6658. pub const aya_obj::generated::BPF_NOEXIST: aya_obj::generated::_bindgen_ty_4
  6659. pub const aya_obj::generated::BPF_PSEUDO_BTF_ID: u32
  6660. pub const aya_obj::generated::BPF_PSEUDO_CALL: u32
  6661. pub const aya_obj::generated::BPF_PSEUDO_FUNC: u32
  6662. pub const aya_obj::generated::BPF_PSEUDO_KFUNC_CALL: u32
  6663. pub const aya_obj::generated::BPF_PSEUDO_MAP_FD: u32
  6664. pub const aya_obj::generated::BPF_PSEUDO_MAP_IDX: u32
  6665. pub const aya_obj::generated::BPF_PSEUDO_MAP_IDX_VALUE: u32
  6666. pub const aya_obj::generated::BPF_PSEUDO_MAP_VALUE: u32
  6667. pub const aya_obj::generated::BPF_RINGBUF_BUSY_BIT: aya_obj::generated::_bindgen_ty_24
  6668. pub const aya_obj::generated::BPF_RINGBUF_DISCARD_BIT: aya_obj::generated::_bindgen_ty_24
  6669. pub const aya_obj::generated::BPF_RINGBUF_HDR_SZ: aya_obj::generated::_bindgen_ty_24
  6670. pub const aya_obj::generated::BPF_ST: u32
  6671. pub const aya_obj::generated::BPF_STX: u32
  6672. pub const aya_obj::generated::BPF_W: u32
  6673. pub const aya_obj::generated::BTF_INT_BOOL: u32
  6674. pub const aya_obj::generated::BTF_INT_CHAR: u32
  6675. pub const aya_obj::generated::BTF_INT_SIGNED: u32
  6676. pub const aya_obj::generated::BTF_KIND_ARRAY: aya_obj::generated::_bindgen_ty_42
  6677. pub const aya_obj::generated::BTF_KIND_CONST: aya_obj::generated::_bindgen_ty_42
  6678. pub const aya_obj::generated::BTF_KIND_DATASEC: aya_obj::generated::_bindgen_ty_42
  6679. pub const aya_obj::generated::BTF_KIND_DECL_TAG: aya_obj::generated::_bindgen_ty_42
  6680. pub const aya_obj::generated::BTF_KIND_ENUM: aya_obj::generated::_bindgen_ty_42
  6681. pub const aya_obj::generated::BTF_KIND_ENUM64: aya_obj::generated::_bindgen_ty_42
  6682. pub const aya_obj::generated::BTF_KIND_FLOAT: aya_obj::generated::_bindgen_ty_42
  6683. pub const aya_obj::generated::BTF_KIND_FUNC: aya_obj::generated::_bindgen_ty_42
  6684. pub const aya_obj::generated::BTF_KIND_FUNC_PROTO: aya_obj::generated::_bindgen_ty_42
  6685. pub const aya_obj::generated::BTF_KIND_FWD: aya_obj::generated::_bindgen_ty_42
  6686. pub const aya_obj::generated::BTF_KIND_INT: aya_obj::generated::_bindgen_ty_42
  6687. pub const aya_obj::generated::BTF_KIND_MAX: aya_obj::generated::_bindgen_ty_42
  6688. pub const aya_obj::generated::BTF_KIND_PTR: aya_obj::generated::_bindgen_ty_42
  6689. pub const aya_obj::generated::BTF_KIND_RESTRICT: aya_obj::generated::_bindgen_ty_42
  6690. pub const aya_obj::generated::BTF_KIND_STRUCT: aya_obj::generated::_bindgen_ty_42
  6691. pub const aya_obj::generated::BTF_KIND_TYPEDEF: aya_obj::generated::_bindgen_ty_42
  6692. pub const aya_obj::generated::BTF_KIND_TYPE_TAG: aya_obj::generated::_bindgen_ty_42
  6693. pub const aya_obj::generated::BTF_KIND_UNION: aya_obj::generated::_bindgen_ty_42
  6694. pub const aya_obj::generated::BTF_KIND_UNKN: aya_obj::generated::_bindgen_ty_42
  6695. pub const aya_obj::generated::BTF_KIND_VAR: aya_obj::generated::_bindgen_ty_42
  6696. pub const aya_obj::generated::BTF_KIND_VOLATILE: aya_obj::generated::_bindgen_ty_42
  6697. pub const aya_obj::generated::BTF_VAR_GLOBAL_ALLOCATED: aya_obj::generated::_bindgen_ty_43
  6698. pub const aya_obj::generated::BTF_VAR_GLOBAL_EXTERN: aya_obj::generated::_bindgen_ty_43
  6699. pub const aya_obj::generated::BTF_VAR_STATIC: aya_obj::generated::_bindgen_ty_43
  6700. pub const aya_obj::generated::IFLA_XDP_ATTACHED: aya_obj::generated::_bindgen_ty_92
  6701. pub const aya_obj::generated::IFLA_XDP_DRV_PROG_ID: aya_obj::generated::_bindgen_ty_92
  6702. pub const aya_obj::generated::IFLA_XDP_EXPECTED_FD: aya_obj::generated::_bindgen_ty_92
  6703. pub const aya_obj::generated::IFLA_XDP_FD: aya_obj::generated::_bindgen_ty_92
  6704. pub const aya_obj::generated::IFLA_XDP_FLAGS: aya_obj::generated::_bindgen_ty_92
  6705. pub const aya_obj::generated::IFLA_XDP_HW_PROG_ID: aya_obj::generated::_bindgen_ty_92
  6706. pub const aya_obj::generated::IFLA_XDP_PROG_ID: aya_obj::generated::_bindgen_ty_92
  6707. pub const aya_obj::generated::IFLA_XDP_SKB_PROG_ID: aya_obj::generated::_bindgen_ty_92
  6708. pub const aya_obj::generated::IFLA_XDP_UNSPEC: aya_obj::generated::_bindgen_ty_92
  6709. pub const aya_obj::generated::NLMSG_ALIGNTO: u32
  6710. pub const aya_obj::generated::NR_BTF_KINDS: aya_obj::generated::_bindgen_ty_42
  6711. pub const aya_obj::generated::PERF_FLAG_FD_CLOEXEC: u32
  6712. pub const aya_obj::generated::PERF_FLAG_FD_NO_GROUP: u32
  6713. pub const aya_obj::generated::PERF_FLAG_FD_OUTPUT: u32
  6714. pub const aya_obj::generated::PERF_FLAG_PID_CGROUP: u32
  6715. pub const aya_obj::generated::PERF_MAX_CONTEXTS_PER_STACK: u32
  6716. pub const aya_obj::generated::PERF_MAX_STACK_DEPTH: u32
  6717. pub const aya_obj::generated::SO_ATTACH_BPF: u32
  6718. pub const aya_obj::generated::SO_DETACH_BPF: u32
  6719. pub const aya_obj::generated::TCA_BPF_ACT: aya_obj::generated::_bindgen_ty_152
  6720. pub const aya_obj::generated::TCA_BPF_CLASSID: aya_obj::generated::_bindgen_ty_152
  6721. pub const aya_obj::generated::TCA_BPF_FD: aya_obj::generated::_bindgen_ty_152
  6722. pub const aya_obj::generated::TCA_BPF_FLAGS: aya_obj::generated::_bindgen_ty_152
  6723. pub const aya_obj::generated::TCA_BPF_FLAGS_GEN: aya_obj::generated::_bindgen_ty_152
  6724. pub const aya_obj::generated::TCA_BPF_FLAG_ACT_DIRECT: u32
  6725. pub const aya_obj::generated::TCA_BPF_ID: aya_obj::generated::_bindgen_ty_152
  6726. pub const aya_obj::generated::TCA_BPF_NAME: aya_obj::generated::_bindgen_ty_152
  6727. pub const aya_obj::generated::TCA_BPF_OPS: aya_obj::generated::_bindgen_ty_152
  6728. pub const aya_obj::generated::TCA_BPF_OPS_LEN: aya_obj::generated::_bindgen_ty_152
  6729. pub const aya_obj::generated::TCA_BPF_POLICE: aya_obj::generated::_bindgen_ty_152
  6730. pub const aya_obj::generated::TCA_BPF_TAG: aya_obj::generated::_bindgen_ty_152
  6731. pub const aya_obj::generated::TCA_BPF_UNSPEC: aya_obj::generated::_bindgen_ty_152
  6732. pub const aya_obj::generated::TCA_CHAIN: aya_obj::generated::_bindgen_ty_172
  6733. pub const aya_obj::generated::TCA_DUMP_FLAGS: aya_obj::generated::_bindgen_ty_172
  6734. pub const aya_obj::generated::TCA_DUMP_INVISIBLE: aya_obj::generated::_bindgen_ty_172
  6735. pub const aya_obj::generated::TCA_EGRESS_BLOCK: aya_obj::generated::_bindgen_ty_172
  6736. pub const aya_obj::generated::TCA_FCNT: aya_obj::generated::_bindgen_ty_172
  6737. pub const aya_obj::generated::TCA_HW_OFFLOAD: aya_obj::generated::_bindgen_ty_172
  6738. pub const aya_obj::generated::TCA_INGRESS_BLOCK: aya_obj::generated::_bindgen_ty_172
  6739. pub const aya_obj::generated::TCA_KIND: aya_obj::generated::_bindgen_ty_172
  6740. pub const aya_obj::generated::TCA_OPTIONS: aya_obj::generated::_bindgen_ty_172
  6741. pub const aya_obj::generated::TCA_PAD: aya_obj::generated::_bindgen_ty_172
  6742. pub const aya_obj::generated::TCA_RATE: aya_obj::generated::_bindgen_ty_172
  6743. pub const aya_obj::generated::TCA_STAB: aya_obj::generated::_bindgen_ty_172
  6744. pub const aya_obj::generated::TCA_STATS: aya_obj::generated::_bindgen_ty_172
  6745. pub const aya_obj::generated::TCA_STATS2: aya_obj::generated::_bindgen_ty_172
  6746. pub const aya_obj::generated::TCA_UNSPEC: aya_obj::generated::_bindgen_ty_172
  6747. pub const aya_obj::generated::TCA_XSTATS: aya_obj::generated::_bindgen_ty_172
  6748. pub const aya_obj::generated::TC_H_CLSACT: u32
  6749. pub const aya_obj::generated::TC_H_INGRESS: u32
  6750. pub const aya_obj::generated::TC_H_MAJ_MASK: u32
  6751. pub const aya_obj::generated::TC_H_MIN_EGRESS: u32
  6752. pub const aya_obj::generated::TC_H_MIN_INGRESS: u32
  6753. pub const aya_obj::generated::TC_H_MIN_MASK: u32
  6754. pub const aya_obj::generated::TC_H_MIN_PRIORITY: u32
  6755. pub const aya_obj::generated::TC_H_ROOT: u32
  6756. pub const aya_obj::generated::TC_H_UNSPEC: u32
  6757. pub const aya_obj::generated::XDP_FLAGS_DRV_MODE: u32
  6758. pub const aya_obj::generated::XDP_FLAGS_HW_MODE: u32
  6759. pub const aya_obj::generated::XDP_FLAGS_MASK: u32
  6760. pub const aya_obj::generated::XDP_FLAGS_MODES: u32
  6761. pub const aya_obj::generated::XDP_FLAGS_REPLACE: u32
  6762. pub const aya_obj::generated::XDP_FLAGS_SKB_MODE: u32
  6763. pub const aya_obj::generated::XDP_FLAGS_UPDATE_IF_NOEXIST: u32
  6764. pub const aya_obj::generated::__IFLA_XDP_MAX: aya_obj::generated::_bindgen_ty_92
  6765. pub const aya_obj::generated::__TCA_BPF_MAX: aya_obj::generated::_bindgen_ty_152
  6766. pub const aya_obj::generated::__TCA_MAX: aya_obj::generated::_bindgen_ty_172
  6767. pub type aya_obj::generated::__s16 = core::ffi::c_short
  6768. pub type aya_obj::generated::__s32 = core::ffi::c_int
  6769. pub type aya_obj::generated::__s64 = core::ffi::c_longlong
  6770. pub type aya_obj::generated::__u16 = core::ffi::c_ushort
  6771. pub type aya_obj::generated::__u32 = core::ffi::c_uint
  6772. pub type aya_obj::generated::__u64 = core::ffi::c_ulonglong
  6773. pub type aya_obj::generated::__u8 = core::ffi::c_uchar
  6774. pub type aya_obj::generated::_bindgen_ty_10 = core::ffi::c_uint
  6775. pub type aya_obj::generated::_bindgen_ty_11 = core::ffi::c_uint
  6776. pub type aya_obj::generated::_bindgen_ty_12 = core::ffi::c_uint
  6777. pub type aya_obj::generated::_bindgen_ty_13 = core::ffi::c_uint
  6778. pub type aya_obj::generated::_bindgen_ty_14 = core::ffi::c_ulong
  6779. pub type aya_obj::generated::_bindgen_ty_15 = core::ffi::c_int
  6780. pub type aya_obj::generated::_bindgen_ty_152 = core::ffi::c_uint
  6781. pub type aya_obj::generated::_bindgen_ty_17 = core::ffi::c_uint
  6782. pub type aya_obj::generated::_bindgen_ty_172 = core::ffi::c_uint
  6783. pub type aya_obj::generated::_bindgen_ty_19 = core::ffi::c_uint
  6784. pub type aya_obj::generated::_bindgen_ty_2 = core::ffi::c_uint
  6785. pub type aya_obj::generated::_bindgen_ty_21 = core::ffi::c_uint
  6786. pub type aya_obj::generated::_bindgen_ty_24 = core::ffi::c_uint
  6787. pub type aya_obj::generated::_bindgen_ty_26 = core::ffi::c_uint
  6788. pub type aya_obj::generated::_bindgen_ty_27 = core::ffi::c_uint
  6789. pub type aya_obj::generated::_bindgen_ty_3 = core::ffi::c_uint
  6790. pub type aya_obj::generated::_bindgen_ty_4 = core::ffi::c_uint
  6791. pub type aya_obj::generated::_bindgen_ty_41 = core::ffi::c_uint
  6792. pub type aya_obj::generated::_bindgen_ty_42 = core::ffi::c_uint
  6793. pub type aya_obj::generated::_bindgen_ty_43 = core::ffi::c_uint
  6794. pub type aya_obj::generated::_bindgen_ty_5 = core::ffi::c_uint
  6795. pub type aya_obj::generated::_bindgen_ty_6 = core::ffi::c_uint
  6796. pub type aya_obj::generated::_bindgen_ty_7 = core::ffi::c_uint
  6797. pub type aya_obj::generated::_bindgen_ty_8 = core::ffi::c_uint
  6798. pub type aya_obj::generated::_bindgen_ty_9 = core::ffi::c_uint
  6799. pub type aya_obj::generated::_bindgen_ty_92 = core::ffi::c_uint
  6800. pub mod aya_obj::maps
  6801. pub enum aya_obj::maps::Map
  6802. pub aya_obj::maps::Map::Btf(aya_obj::maps::BtfMap)
  6803. pub aya_obj::maps::Map::Legacy(aya_obj::maps::LegacyMap)
  6804. impl aya_obj::maps::Map
  6805. pub fn aya_obj::maps::Map::data(&self) -> &[u8]
  6806. pub fn aya_obj::maps::Map::data_mut(&mut self) -> &mut alloc::vec::Vec<u8>
  6807. pub fn aya_obj::maps::Map::key_size(&self) -> u32
  6808. pub fn aya_obj::maps::Map::map_flags(&self) -> u32
  6809. pub fn aya_obj::maps::Map::map_type(&self) -> u32
  6810. pub fn aya_obj::maps::Map::max_entries(&self) -> u32
  6811. pub fn aya_obj::maps::Map::pinning(&self) -> aya_obj::maps::PinningType
  6812. pub fn aya_obj::maps::Map::section_index(&self) -> usize
  6813. pub fn aya_obj::maps::Map::section_kind(&self) -> aya_obj::EbpfSectionKind
  6814. pub fn aya_obj::maps::Map::set_max_entries(&mut self, v: u32)
  6815. pub fn aya_obj::maps::Map::set_value_size(&mut self, size: u32)
  6816. pub fn aya_obj::maps::Map::symbol_index(&self) -> core::option::Option<usize>
  6817. pub fn aya_obj::maps::Map::value_size(&self) -> u32
  6818. impl core::clone::Clone for aya_obj::maps::Map
  6819. pub fn aya_obj::maps::Map::clone(&self) -> aya_obj::maps::Map
  6820. impl core::fmt::Debug for aya_obj::maps::Map
  6821. pub fn aya_obj::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6822. impl core::marker::Freeze for aya_obj::maps::Map
  6823. impl core::marker::Send for aya_obj::maps::Map
  6824. impl core::marker::Sync for aya_obj::maps::Map
  6825. impl core::marker::Unpin for aya_obj::maps::Map
  6826. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::Map
  6827. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::Map
  6828. impl<T, U> core::convert::Into<U> for aya_obj::maps::Map where U: core::convert::From<T>
  6829. pub fn aya_obj::maps::Map::into(self) -> U
  6830. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::Map where U: core::convert::Into<T>
  6831. pub type aya_obj::maps::Map::Error = core::convert::Infallible
  6832. pub fn aya_obj::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6833. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::Map where U: core::convert::TryFrom<T>
  6834. pub type aya_obj::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  6835. pub fn aya_obj::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6836. impl<T> alloc::borrow::ToOwned for aya_obj::maps::Map where T: core::clone::Clone
  6837. pub type aya_obj::maps::Map::Owned = T
  6838. pub fn aya_obj::maps::Map::clone_into(&self, target: &mut T)
  6839. pub fn aya_obj::maps::Map::to_owned(&self) -> T
  6840. impl<T> core::any::Any for aya_obj::maps::Map where T: 'static + core::marker::Sized
  6841. pub fn aya_obj::maps::Map::type_id(&self) -> core::any::TypeId
  6842. impl<T> core::borrow::Borrow<T> for aya_obj::maps::Map where T: core::marker::Sized
  6843. pub fn aya_obj::maps::Map::borrow(&self) -> &T
  6844. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::Map where T: core::marker::Sized
  6845. pub fn aya_obj::maps::Map::borrow_mut(&mut self) -> &mut T
  6846. impl<T> core::clone::CloneToUninit for aya_obj::maps::Map where T: core::clone::Clone
  6847. pub unsafe fn aya_obj::maps::Map::clone_to_uninit(&self, dst: *mut T)
  6848. impl<T> core::convert::From<T> for aya_obj::maps::Map
  6849. pub fn aya_obj::maps::Map::from(t: T) -> T
  6850. pub enum aya_obj::maps::PinningError
  6851. pub aya_obj::maps::PinningError::Unsupported
  6852. pub aya_obj::maps::PinningError::Unsupported::pinning_type: u32
  6853. impl core::error::Error for aya_obj::maps::PinningError
  6854. impl core::fmt::Debug for aya_obj::maps::PinningError
  6855. pub fn aya_obj::maps::PinningError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6856. impl core::fmt::Display for aya_obj::maps::PinningError
  6857. pub fn aya_obj::maps::PinningError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6858. impl core::marker::Freeze for aya_obj::maps::PinningError
  6859. impl core::marker::Send for aya_obj::maps::PinningError
  6860. impl core::marker::Sync for aya_obj::maps::PinningError
  6861. impl core::marker::Unpin for aya_obj::maps::PinningError
  6862. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::PinningError
  6863. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::PinningError
  6864. impl<T, U> core::convert::Into<U> for aya_obj::maps::PinningError where U: core::convert::From<T>
  6865. pub fn aya_obj::maps::PinningError::into(self) -> U
  6866. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::PinningError where U: core::convert::Into<T>
  6867. pub type aya_obj::maps::PinningError::Error = core::convert::Infallible
  6868. pub fn aya_obj::maps::PinningError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6869. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::PinningError where U: core::convert::TryFrom<T>
  6870. pub type aya_obj::maps::PinningError::Error = <U as core::convert::TryFrom<T>>::Error
  6871. pub fn aya_obj::maps::PinningError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6872. impl<T> alloc::string::ToString for aya_obj::maps::PinningError where T: core::fmt::Display + core::marker::Sized
  6873. pub fn aya_obj::maps::PinningError::to_string(&self) -> alloc::string::String
  6874. impl<T> core::any::Any for aya_obj::maps::PinningError where T: 'static + core::marker::Sized
  6875. pub fn aya_obj::maps::PinningError::type_id(&self) -> core::any::TypeId
  6876. impl<T> core::borrow::Borrow<T> for aya_obj::maps::PinningError where T: core::marker::Sized
  6877. pub fn aya_obj::maps::PinningError::borrow(&self) -> &T
  6878. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::PinningError where T: core::marker::Sized
  6879. pub fn aya_obj::maps::PinningError::borrow_mut(&mut self) -> &mut T
  6880. impl<T> core::convert::From<T> for aya_obj::maps::PinningError
  6881. pub fn aya_obj::maps::PinningError::from(t: T) -> T
  6882. #[repr(u32)] pub enum aya_obj::maps::PinningType
  6883. pub aya_obj::maps::PinningType::ByName = 1
  6884. pub aya_obj::maps::PinningType::None = 0
  6885. impl core::clone::Clone for aya_obj::maps::PinningType
  6886. pub fn aya_obj::maps::PinningType::clone(&self) -> aya_obj::maps::PinningType
  6887. impl core::cmp::Eq for aya_obj::maps::PinningType
  6888. impl core::cmp::PartialEq for aya_obj::maps::PinningType
  6889. pub fn aya_obj::maps::PinningType::eq(&self, other: &aya_obj::maps::PinningType) -> bool
  6890. impl core::convert::TryFrom<u32> for aya_obj::maps::PinningType
  6891. pub type aya_obj::maps::PinningType::Error = aya_obj::maps::PinningError
  6892. pub fn aya_obj::maps::PinningType::try_from(value: u32) -> core::result::Result<Self, Self::Error>
  6893. impl core::default::Default for aya_obj::maps::PinningType
  6894. pub fn aya_obj::maps::PinningType::default() -> aya_obj::maps::PinningType
  6895. impl core::fmt::Debug for aya_obj::maps::PinningType
  6896. pub fn aya_obj::maps::PinningType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6897. impl core::marker::Copy for aya_obj::maps::PinningType
  6898. impl core::marker::StructuralPartialEq for aya_obj::maps::PinningType
  6899. impl core::marker::Freeze for aya_obj::maps::PinningType
  6900. impl core::marker::Send for aya_obj::maps::PinningType
  6901. impl core::marker::Sync for aya_obj::maps::PinningType
  6902. impl core::marker::Unpin for aya_obj::maps::PinningType
  6903. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::PinningType
  6904. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::PinningType
  6905. impl<T, U> core::convert::Into<U> for aya_obj::maps::PinningType where U: core::convert::From<T>
  6906. pub fn aya_obj::maps::PinningType::into(self) -> U
  6907. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::PinningType where U: core::convert::Into<T>
  6908. pub type aya_obj::maps::PinningType::Error = core::convert::Infallible
  6909. pub fn aya_obj::maps::PinningType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6910. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::PinningType where U: core::convert::TryFrom<T>
  6911. pub type aya_obj::maps::PinningType::Error = <U as core::convert::TryFrom<T>>::Error
  6912. pub fn aya_obj::maps::PinningType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6913. impl<T> alloc::borrow::ToOwned for aya_obj::maps::PinningType where T: core::clone::Clone
  6914. pub type aya_obj::maps::PinningType::Owned = T
  6915. pub fn aya_obj::maps::PinningType::clone_into(&self, target: &mut T)
  6916. pub fn aya_obj::maps::PinningType::to_owned(&self) -> T
  6917. impl<T> core::any::Any for aya_obj::maps::PinningType where T: 'static + core::marker::Sized
  6918. pub fn aya_obj::maps::PinningType::type_id(&self) -> core::any::TypeId
  6919. impl<T> core::borrow::Borrow<T> for aya_obj::maps::PinningType where T: core::marker::Sized
  6920. pub fn aya_obj::maps::PinningType::borrow(&self) -> &T
  6921. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::PinningType where T: core::marker::Sized
  6922. pub fn aya_obj::maps::PinningType::borrow_mut(&mut self) -> &mut T
  6923. impl<T> core::clone::CloneToUninit for aya_obj::maps::PinningType where T: core::clone::Clone
  6924. pub unsafe fn aya_obj::maps::PinningType::clone_to_uninit(&self, dst: *mut T)
  6925. impl<T> core::clone::CloneToUninit for aya_obj::maps::PinningType where T: core::marker::Copy
  6926. pub unsafe fn aya_obj::maps::PinningType::clone_to_uninit(&self, dst: *mut T)
  6927. impl<T> core::convert::From<T> for aya_obj::maps::PinningType
  6928. pub fn aya_obj::maps::PinningType::from(t: T) -> T
  6929. pub struct aya_obj::maps::BtfMap
  6930. pub aya_obj::maps::BtfMap::def: aya_obj::maps::BtfMapDef
  6931. impl core::clone::Clone for aya_obj::maps::BtfMap
  6932. pub fn aya_obj::maps::BtfMap::clone(&self) -> aya_obj::maps::BtfMap
  6933. impl core::fmt::Debug for aya_obj::maps::BtfMap
  6934. pub fn aya_obj::maps::BtfMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6935. impl core::marker::Freeze for aya_obj::maps::BtfMap
  6936. impl core::marker::Send for aya_obj::maps::BtfMap
  6937. impl core::marker::Sync for aya_obj::maps::BtfMap
  6938. impl core::marker::Unpin for aya_obj::maps::BtfMap
  6939. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::BtfMap
  6940. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::BtfMap
  6941. impl<T, U> core::convert::Into<U> for aya_obj::maps::BtfMap where U: core::convert::From<T>
  6942. pub fn aya_obj::maps::BtfMap::into(self) -> U
  6943. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::BtfMap where U: core::convert::Into<T>
  6944. pub type aya_obj::maps::BtfMap::Error = core::convert::Infallible
  6945. pub fn aya_obj::maps::BtfMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6946. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::BtfMap where U: core::convert::TryFrom<T>
  6947. pub type aya_obj::maps::BtfMap::Error = <U as core::convert::TryFrom<T>>::Error
  6948. pub fn aya_obj::maps::BtfMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6949. impl<T> alloc::borrow::ToOwned for aya_obj::maps::BtfMap where T: core::clone::Clone
  6950. pub type aya_obj::maps::BtfMap::Owned = T
  6951. pub fn aya_obj::maps::BtfMap::clone_into(&self, target: &mut T)
  6952. pub fn aya_obj::maps::BtfMap::to_owned(&self) -> T
  6953. impl<T> core::any::Any for aya_obj::maps::BtfMap where T: 'static + core::marker::Sized
  6954. pub fn aya_obj::maps::BtfMap::type_id(&self) -> core::any::TypeId
  6955. impl<T> core::borrow::Borrow<T> for aya_obj::maps::BtfMap where T: core::marker::Sized
  6956. pub fn aya_obj::maps::BtfMap::borrow(&self) -> &T
  6957. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::BtfMap where T: core::marker::Sized
  6958. pub fn aya_obj::maps::BtfMap::borrow_mut(&mut self) -> &mut T
  6959. impl<T> core::clone::CloneToUninit for aya_obj::maps::BtfMap where T: core::clone::Clone
  6960. pub unsafe fn aya_obj::maps::BtfMap::clone_to_uninit(&self, dst: *mut T)
  6961. impl<T> core::convert::From<T> for aya_obj::maps::BtfMap
  6962. pub fn aya_obj::maps::BtfMap::from(t: T) -> T
  6963. pub struct aya_obj::maps::BtfMapDef
  6964. pub aya_obj::maps::BtfMapDef::btf_key_type_id: u32
  6965. pub aya_obj::maps::BtfMapDef::btf_value_type_id: u32
  6966. impl core::clone::Clone for aya_obj::maps::BtfMapDef
  6967. pub fn aya_obj::maps::BtfMapDef::clone(&self) -> aya_obj::maps::BtfMapDef
  6968. impl core::cmp::Eq for aya_obj::maps::BtfMapDef
  6969. impl core::cmp::PartialEq for aya_obj::maps::BtfMapDef
  6970. pub fn aya_obj::maps::BtfMapDef::eq(&self, other: &aya_obj::maps::BtfMapDef) -> bool
  6971. impl core::default::Default for aya_obj::maps::BtfMapDef
  6972. pub fn aya_obj::maps::BtfMapDef::default() -> aya_obj::maps::BtfMapDef
  6973. impl core::fmt::Debug for aya_obj::maps::BtfMapDef
  6974. pub fn aya_obj::maps::BtfMapDef::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6975. impl core::marker::Copy for aya_obj::maps::BtfMapDef
  6976. impl core::marker::StructuralPartialEq for aya_obj::maps::BtfMapDef
  6977. impl core::marker::Freeze for aya_obj::maps::BtfMapDef
  6978. impl core::marker::Send for aya_obj::maps::BtfMapDef
  6979. impl core::marker::Sync for aya_obj::maps::BtfMapDef
  6980. impl core::marker::Unpin for aya_obj::maps::BtfMapDef
  6981. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::BtfMapDef
  6982. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::BtfMapDef
  6983. impl<T, U> core::convert::Into<U> for aya_obj::maps::BtfMapDef where U: core::convert::From<T>
  6984. pub fn aya_obj::maps::BtfMapDef::into(self) -> U
  6985. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::BtfMapDef where U: core::convert::Into<T>
  6986. pub type aya_obj::maps::BtfMapDef::Error = core::convert::Infallible
  6987. pub fn aya_obj::maps::BtfMapDef::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6988. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::BtfMapDef where U: core::convert::TryFrom<T>
  6989. pub type aya_obj::maps::BtfMapDef::Error = <U as core::convert::TryFrom<T>>::Error
  6990. pub fn aya_obj::maps::BtfMapDef::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6991. impl<T> alloc::borrow::ToOwned for aya_obj::maps::BtfMapDef where T: core::clone::Clone
  6992. pub type aya_obj::maps::BtfMapDef::Owned = T
  6993. pub fn aya_obj::maps::BtfMapDef::clone_into(&self, target: &mut T)
  6994. pub fn aya_obj::maps::BtfMapDef::to_owned(&self) -> T
  6995. impl<T> core::any::Any for aya_obj::maps::BtfMapDef where T: 'static + core::marker::Sized
  6996. pub fn aya_obj::maps::BtfMapDef::type_id(&self) -> core::any::TypeId
  6997. impl<T> core::borrow::Borrow<T> for aya_obj::maps::BtfMapDef where T: core::marker::Sized
  6998. pub fn aya_obj::maps::BtfMapDef::borrow(&self) -> &T
  6999. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::BtfMapDef where T: core::marker::Sized
  7000. pub fn aya_obj::maps::BtfMapDef::borrow_mut(&mut self) -> &mut T
  7001. impl<T> core::clone::CloneToUninit for aya_obj::maps::BtfMapDef where T: core::clone::Clone
  7002. pub unsafe fn aya_obj::maps::BtfMapDef::clone_to_uninit(&self, dst: *mut T)
  7003. impl<T> core::clone::CloneToUninit for aya_obj::maps::BtfMapDef where T: core::marker::Copy
  7004. pub unsafe fn aya_obj::maps::BtfMapDef::clone_to_uninit(&self, dst: *mut T)
  7005. impl<T> core::convert::From<T> for aya_obj::maps::BtfMapDef
  7006. pub fn aya_obj::maps::BtfMapDef::from(t: T) -> T
  7007. pub struct aya_obj::maps::InvalidMapTypeError
  7008. pub aya_obj::maps::InvalidMapTypeError::map_type: u32
  7009. impl core::marker::Freeze for aya_obj::maps::InvalidMapTypeError
  7010. impl core::marker::Send for aya_obj::maps::InvalidMapTypeError
  7011. impl core::marker::Sync for aya_obj::maps::InvalidMapTypeError
  7012. impl core::marker::Unpin for aya_obj::maps::InvalidMapTypeError
  7013. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::InvalidMapTypeError
  7014. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::InvalidMapTypeError
  7015. impl<T, U> core::convert::Into<U> for aya_obj::maps::InvalidMapTypeError where U: core::convert::From<T>
  7016. pub fn aya_obj::maps::InvalidMapTypeError::into(self) -> U
  7017. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::InvalidMapTypeError where U: core::convert::Into<T>
  7018. pub type aya_obj::maps::InvalidMapTypeError::Error = core::convert::Infallible
  7019. pub fn aya_obj::maps::InvalidMapTypeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7020. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::InvalidMapTypeError where U: core::convert::TryFrom<T>
  7021. pub type aya_obj::maps::InvalidMapTypeError::Error = <U as core::convert::TryFrom<T>>::Error
  7022. pub fn aya_obj::maps::InvalidMapTypeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7023. impl<T> core::any::Any for aya_obj::maps::InvalidMapTypeError where T: 'static + core::marker::Sized
  7024. pub fn aya_obj::maps::InvalidMapTypeError::type_id(&self) -> core::any::TypeId
  7025. impl<T> core::borrow::Borrow<T> for aya_obj::maps::InvalidMapTypeError where T: core::marker::Sized
  7026. pub fn aya_obj::maps::InvalidMapTypeError::borrow(&self) -> &T
  7027. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::InvalidMapTypeError where T: core::marker::Sized
  7028. pub fn aya_obj::maps::InvalidMapTypeError::borrow_mut(&mut self) -> &mut T
  7029. impl<T> core::convert::From<T> for aya_obj::maps::InvalidMapTypeError
  7030. pub fn aya_obj::maps::InvalidMapTypeError::from(t: T) -> T
  7031. pub struct aya_obj::maps::LegacyMap
  7032. pub aya_obj::maps::LegacyMap::data: alloc::vec::Vec<u8>
  7033. pub aya_obj::maps::LegacyMap::def: aya_obj::maps::bpf_map_def
  7034. pub aya_obj::maps::LegacyMap::section_index: usize
  7035. pub aya_obj::maps::LegacyMap::section_kind: aya_obj::EbpfSectionKind
  7036. pub aya_obj::maps::LegacyMap::symbol_index: core::option::Option<usize>
  7037. impl core::clone::Clone for aya_obj::maps::LegacyMap
  7038. pub fn aya_obj::maps::LegacyMap::clone(&self) -> aya_obj::maps::LegacyMap
  7039. impl core::fmt::Debug for aya_obj::maps::LegacyMap
  7040. pub fn aya_obj::maps::LegacyMap::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7041. impl core::marker::Freeze for aya_obj::maps::LegacyMap
  7042. impl core::marker::Send for aya_obj::maps::LegacyMap
  7043. impl core::marker::Sync for aya_obj::maps::LegacyMap
  7044. impl core::marker::Unpin for aya_obj::maps::LegacyMap
  7045. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::LegacyMap
  7046. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::LegacyMap
  7047. impl<T, U> core::convert::Into<U> for aya_obj::maps::LegacyMap where U: core::convert::From<T>
  7048. pub fn aya_obj::maps::LegacyMap::into(self) -> U
  7049. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::LegacyMap where U: core::convert::Into<T>
  7050. pub type aya_obj::maps::LegacyMap::Error = core::convert::Infallible
  7051. pub fn aya_obj::maps::LegacyMap::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7052. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::LegacyMap where U: core::convert::TryFrom<T>
  7053. pub type aya_obj::maps::LegacyMap::Error = <U as core::convert::TryFrom<T>>::Error
  7054. pub fn aya_obj::maps::LegacyMap::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7055. impl<T> alloc::borrow::ToOwned for aya_obj::maps::LegacyMap where T: core::clone::Clone
  7056. pub type aya_obj::maps::LegacyMap::Owned = T
  7057. pub fn aya_obj::maps::LegacyMap::clone_into(&self, target: &mut T)
  7058. pub fn aya_obj::maps::LegacyMap::to_owned(&self) -> T
  7059. impl<T> core::any::Any for aya_obj::maps::LegacyMap where T: 'static + core::marker::Sized
  7060. pub fn aya_obj::maps::LegacyMap::type_id(&self) -> core::any::TypeId
  7061. impl<T> core::borrow::Borrow<T> for aya_obj::maps::LegacyMap where T: core::marker::Sized
  7062. pub fn aya_obj::maps::LegacyMap::borrow(&self) -> &T
  7063. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::LegacyMap where T: core::marker::Sized
  7064. pub fn aya_obj::maps::LegacyMap::borrow_mut(&mut self) -> &mut T
  7065. impl<T> core::clone::CloneToUninit for aya_obj::maps::LegacyMap where T: core::clone::Clone
  7066. pub unsafe fn aya_obj::maps::LegacyMap::clone_to_uninit(&self, dst: *mut T)
  7067. impl<T> core::convert::From<T> for aya_obj::maps::LegacyMap
  7068. pub fn aya_obj::maps::LegacyMap::from(t: T) -> T
  7069. #[repr(C)] pub struct aya_obj::maps::bpf_map_def
  7070. pub aya_obj::maps::bpf_map_def::id: u32
  7071. pub aya_obj::maps::bpf_map_def::key_size: u32
  7072. pub aya_obj::maps::bpf_map_def::map_flags: u32
  7073. pub aya_obj::maps::bpf_map_def::map_type: u32
  7074. pub aya_obj::maps::bpf_map_def::max_entries: u32
  7075. pub aya_obj::maps::bpf_map_def::pinning: aya_obj::maps::PinningType
  7076. pub aya_obj::maps::bpf_map_def::value_size: u32
  7077. impl core::clone::Clone for aya_obj::maps::bpf_map_def
  7078. pub fn aya_obj::maps::bpf_map_def::clone(&self) -> aya_obj::maps::bpf_map_def
  7079. impl core::cmp::Eq for aya_obj::maps::bpf_map_def
  7080. impl core::cmp::PartialEq for aya_obj::maps::bpf_map_def
  7081. pub fn aya_obj::maps::bpf_map_def::eq(&self, other: &aya_obj::maps::bpf_map_def) -> bool
  7082. impl core::default::Default for aya_obj::maps::bpf_map_def
  7083. pub fn aya_obj::maps::bpf_map_def::default() -> aya_obj::maps::bpf_map_def
  7084. impl core::fmt::Debug for aya_obj::maps::bpf_map_def
  7085. pub fn aya_obj::maps::bpf_map_def::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7086. impl core::marker::Copy for aya_obj::maps::bpf_map_def
  7087. impl core::marker::StructuralPartialEq for aya_obj::maps::bpf_map_def
  7088. impl core::marker::Freeze for aya_obj::maps::bpf_map_def
  7089. impl core::marker::Send for aya_obj::maps::bpf_map_def
  7090. impl core::marker::Sync for aya_obj::maps::bpf_map_def
  7091. impl core::marker::Unpin for aya_obj::maps::bpf_map_def
  7092. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::bpf_map_def
  7093. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::bpf_map_def
  7094. impl<T, U> core::convert::Into<U> for aya_obj::maps::bpf_map_def where U: core::convert::From<T>
  7095. pub fn aya_obj::maps::bpf_map_def::into(self) -> U
  7096. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::bpf_map_def where U: core::convert::Into<T>
  7097. pub type aya_obj::maps::bpf_map_def::Error = core::convert::Infallible
  7098. pub fn aya_obj::maps::bpf_map_def::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7099. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::bpf_map_def where U: core::convert::TryFrom<T>
  7100. pub type aya_obj::maps::bpf_map_def::Error = <U as core::convert::TryFrom<T>>::Error
  7101. pub fn aya_obj::maps::bpf_map_def::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7102. impl<T> alloc::borrow::ToOwned for aya_obj::maps::bpf_map_def where T: core::clone::Clone
  7103. pub type aya_obj::maps::bpf_map_def::Owned = T
  7104. pub fn aya_obj::maps::bpf_map_def::clone_into(&self, target: &mut T)
  7105. pub fn aya_obj::maps::bpf_map_def::to_owned(&self) -> T
  7106. impl<T> core::any::Any for aya_obj::maps::bpf_map_def where T: 'static + core::marker::Sized
  7107. pub fn aya_obj::maps::bpf_map_def::type_id(&self) -> core::any::TypeId
  7108. impl<T> core::borrow::Borrow<T> for aya_obj::maps::bpf_map_def where T: core::marker::Sized
  7109. pub fn aya_obj::maps::bpf_map_def::borrow(&self) -> &T
  7110. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::bpf_map_def where T: core::marker::Sized
  7111. pub fn aya_obj::maps::bpf_map_def::borrow_mut(&mut self) -> &mut T
  7112. impl<T> core::clone::CloneToUninit for aya_obj::maps::bpf_map_def where T: core::clone::Clone
  7113. pub unsafe fn aya_obj::maps::bpf_map_def::clone_to_uninit(&self, dst: *mut T)
  7114. impl<T> core::clone::CloneToUninit for aya_obj::maps::bpf_map_def where T: core::marker::Copy
  7115. pub unsafe fn aya_obj::maps::bpf_map_def::clone_to_uninit(&self, dst: *mut T)
  7116. impl<T> core::convert::From<T> for aya_obj::maps::bpf_map_def
  7117. pub fn aya_obj::maps::bpf_map_def::from(t: T) -> T
  7118. pub mod aya_obj::obj
  7119. pub enum aya_obj::obj::EbpfSectionKind
  7120. pub aya_obj::obj::EbpfSectionKind::Bss
  7121. pub aya_obj::obj::EbpfSectionKind::Btf
  7122. pub aya_obj::obj::EbpfSectionKind::BtfExt
  7123. pub aya_obj::obj::EbpfSectionKind::BtfMaps
  7124. pub aya_obj::obj::EbpfSectionKind::Data
  7125. pub aya_obj::obj::EbpfSectionKind::License
  7126. pub aya_obj::obj::EbpfSectionKind::Maps
  7127. pub aya_obj::obj::EbpfSectionKind::Program
  7128. pub aya_obj::obj::EbpfSectionKind::Rodata
  7129. pub aya_obj::obj::EbpfSectionKind::Text
  7130. pub aya_obj::obj::EbpfSectionKind::Undefined
  7131. pub aya_obj::obj::EbpfSectionKind::Version
  7132. impl core::clone::Clone for aya_obj::EbpfSectionKind
  7133. pub fn aya_obj::EbpfSectionKind::clone(&self) -> aya_obj::EbpfSectionKind
  7134. impl core::cmp::Eq for aya_obj::EbpfSectionKind
  7135. impl core::cmp::PartialEq for aya_obj::EbpfSectionKind
  7136. pub fn aya_obj::EbpfSectionKind::eq(&self, other: &aya_obj::EbpfSectionKind) -> bool
  7137. impl core::fmt::Debug for aya_obj::EbpfSectionKind
  7138. pub fn aya_obj::EbpfSectionKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7139. impl core::marker::Copy for aya_obj::EbpfSectionKind
  7140. impl core::marker::StructuralPartialEq for aya_obj::EbpfSectionKind
  7141. impl core::marker::Freeze for aya_obj::EbpfSectionKind
  7142. impl core::marker::Send for aya_obj::EbpfSectionKind
  7143. impl core::marker::Sync for aya_obj::EbpfSectionKind
  7144. impl core::marker::Unpin for aya_obj::EbpfSectionKind
  7145. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::EbpfSectionKind
  7146. impl core::panic::unwind_safe::UnwindSafe for aya_obj::EbpfSectionKind
  7147. impl<T, U> core::convert::Into<U> for aya_obj::EbpfSectionKind where U: core::convert::From<T>
  7148. pub fn aya_obj::EbpfSectionKind::into(self) -> U
  7149. impl<T, U> core::convert::TryFrom<U> for aya_obj::EbpfSectionKind where U: core::convert::Into<T>
  7150. pub type aya_obj::EbpfSectionKind::Error = core::convert::Infallible
  7151. pub fn aya_obj::EbpfSectionKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7152. impl<T, U> core::convert::TryInto<U> for aya_obj::EbpfSectionKind where U: core::convert::TryFrom<T>
  7153. pub type aya_obj::EbpfSectionKind::Error = <U as core::convert::TryFrom<T>>::Error
  7154. pub fn aya_obj::EbpfSectionKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7155. impl<T> alloc::borrow::ToOwned for aya_obj::EbpfSectionKind where T: core::clone::Clone
  7156. pub type aya_obj::EbpfSectionKind::Owned = T
  7157. pub fn aya_obj::EbpfSectionKind::clone_into(&self, target: &mut T)
  7158. pub fn aya_obj::EbpfSectionKind::to_owned(&self) -> T
  7159. impl<T> core::any::Any for aya_obj::EbpfSectionKind where T: 'static + core::marker::Sized
  7160. pub fn aya_obj::EbpfSectionKind::type_id(&self) -> core::any::TypeId
  7161. impl<T> core::borrow::Borrow<T> for aya_obj::EbpfSectionKind where T: core::marker::Sized
  7162. pub fn aya_obj::EbpfSectionKind::borrow(&self) -> &T
  7163. impl<T> core::borrow::BorrowMut<T> for aya_obj::EbpfSectionKind where T: core::marker::Sized
  7164. pub fn aya_obj::EbpfSectionKind::borrow_mut(&mut self) -> &mut T
  7165. impl<T> core::clone::CloneToUninit for aya_obj::EbpfSectionKind where T: core::clone::Clone
  7166. pub unsafe fn aya_obj::EbpfSectionKind::clone_to_uninit(&self, dst: *mut T)
  7167. impl<T> core::clone::CloneToUninit for aya_obj::EbpfSectionKind where T: core::marker::Copy
  7168. pub unsafe fn aya_obj::EbpfSectionKind::clone_to_uninit(&self, dst: *mut T)
  7169. impl<T> core::convert::From<T> for aya_obj::EbpfSectionKind
  7170. pub fn aya_obj::EbpfSectionKind::from(t: T) -> T
  7171. pub enum aya_obj::obj::ParseError
  7172. pub aya_obj::obj::ParseError::BtfError(aya_obj::btf::BtfError)
  7173. pub aya_obj::obj::ParseError::ElfError(object::read::Error)
  7174. pub aya_obj::obj::ParseError::InvalidGlobalData
  7175. pub aya_obj::obj::ParseError::InvalidGlobalData::data_size: usize
  7176. pub aya_obj::obj::ParseError::InvalidGlobalData::name: alloc::string::String
  7177. pub aya_obj::obj::ParseError::InvalidGlobalData::sym_size: u64
  7178. pub aya_obj::obj::ParseError::InvalidKernelVersion
  7179. pub aya_obj::obj::ParseError::InvalidKernelVersion::data: alloc::vec::Vec<u8>
  7180. pub aya_obj::obj::ParseError::InvalidLicense
  7181. pub aya_obj::obj::ParseError::InvalidLicense::data: alloc::vec::Vec<u8>
  7182. pub aya_obj::obj::ParseError::InvalidMapDefinition
  7183. pub aya_obj::obj::ParseError::InvalidMapDefinition::name: alloc::string::String
  7184. pub aya_obj::obj::ParseError::InvalidProgramCode
  7185. pub aya_obj::obj::ParseError::InvalidProgramSection
  7186. pub aya_obj::obj::ParseError::InvalidProgramSection::section: alloc::string::String
  7187. pub aya_obj::obj::ParseError::InvalidSymbol
  7188. pub aya_obj::obj::ParseError::InvalidSymbol::index: usize
  7189. pub aya_obj::obj::ParseError::InvalidSymbol::name: core::option::Option<alloc::string::String>
  7190. pub aya_obj::obj::ParseError::MapNotFound
  7191. pub aya_obj::obj::ParseError::MapNotFound::index: usize
  7192. pub aya_obj::obj::ParseError::MapSymbolNameNotFound
  7193. pub aya_obj::obj::ParseError::MapSymbolNameNotFound::i: usize
  7194. pub aya_obj::obj::ParseError::MissingLicenseNullTerminator
  7195. pub aya_obj::obj::ParseError::MissingLicenseNullTerminator::data: alloc::vec::Vec<u8>
  7196. pub aya_obj::obj::ParseError::NoBTF
  7197. pub aya_obj::obj::ParseError::NoSymbolsForSection
  7198. pub aya_obj::obj::ParseError::NoSymbolsForSection::section_name: alloc::string::String
  7199. pub aya_obj::obj::ParseError::SectionError
  7200. pub aya_obj::obj::ParseError::SectionError::error: object::read::Error
  7201. pub aya_obj::obj::ParseError::SectionError::index: usize
  7202. pub aya_obj::obj::ParseError::SymbolNotFound
  7203. pub aya_obj::obj::ParseError::SymbolNotFound::name: alloc::string::String
  7204. pub aya_obj::obj::ParseError::SymbolTableConflict
  7205. pub aya_obj::obj::ParseError::SymbolTableConflict::address: u64
  7206. pub aya_obj::obj::ParseError::SymbolTableConflict::section_index: usize
  7207. pub aya_obj::obj::ParseError::UnknownSymbol
  7208. pub aya_obj::obj::ParseError::UnknownSymbol::address: u64
  7209. pub aya_obj::obj::ParseError::UnknownSymbol::section_index: usize
  7210. pub aya_obj::obj::ParseError::UnsupportedRelocationTarget
  7211. impl core::convert::From<aya_obj::btf::BtfError> for aya_obj::ParseError
  7212. pub fn aya_obj::ParseError::from(source: aya_obj::btf::BtfError) -> Self
  7213. impl core::error::Error for aya_obj::ParseError
  7214. pub fn aya_obj::ParseError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7215. impl core::fmt::Debug for aya_obj::ParseError
  7216. pub fn aya_obj::ParseError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7217. impl core::fmt::Display for aya_obj::ParseError
  7218. pub fn aya_obj::ParseError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7219. impl core::marker::Freeze for aya_obj::ParseError
  7220. impl core::marker::Send for aya_obj::ParseError
  7221. impl core::marker::Sync for aya_obj::ParseError
  7222. impl core::marker::Unpin for aya_obj::ParseError
  7223. impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::ParseError
  7224. impl !core::panic::unwind_safe::UnwindSafe for aya_obj::ParseError
  7225. impl<T, U> core::convert::Into<U> for aya_obj::ParseError where U: core::convert::From<T>
  7226. pub fn aya_obj::ParseError::into(self) -> U
  7227. impl<T, U> core::convert::TryFrom<U> for aya_obj::ParseError where U: core::convert::Into<T>
  7228. pub type aya_obj::ParseError::Error = core::convert::Infallible
  7229. pub fn aya_obj::ParseError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7230. impl<T, U> core::convert::TryInto<U> for aya_obj::ParseError where U: core::convert::TryFrom<T>
  7231. pub type aya_obj::ParseError::Error = <U as core::convert::TryFrom<T>>::Error
  7232. pub fn aya_obj::ParseError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7233. impl<T> alloc::string::ToString for aya_obj::ParseError where T: core::fmt::Display + core::marker::Sized
  7234. pub fn aya_obj::ParseError::to_string(&self) -> alloc::string::String
  7235. impl<T> core::any::Any for aya_obj::ParseError where T: 'static + core::marker::Sized
  7236. pub fn aya_obj::ParseError::type_id(&self) -> core::any::TypeId
  7237. impl<T> core::borrow::Borrow<T> for aya_obj::ParseError where T: core::marker::Sized
  7238. pub fn aya_obj::ParseError::borrow(&self) -> &T
  7239. impl<T> core::borrow::BorrowMut<T> for aya_obj::ParseError where T: core::marker::Sized
  7240. pub fn aya_obj::ParseError::borrow_mut(&mut self) -> &mut T
  7241. impl<T> core::convert::From<T> for aya_obj::ParseError
  7242. pub fn aya_obj::ParseError::from(t: T) -> T
  7243. pub enum aya_obj::obj::ProgramSection
  7244. pub aya_obj::obj::ProgramSection::BtfTracePoint
  7245. pub aya_obj::obj::ProgramSection::CgroupDevice
  7246. pub aya_obj::obj::ProgramSection::CgroupSkb
  7247. pub aya_obj::obj::ProgramSection::CgroupSkbEgress
  7248. pub aya_obj::obj::ProgramSection::CgroupSkbIngress
  7249. pub aya_obj::obj::ProgramSection::CgroupSock
  7250. pub aya_obj::obj::ProgramSection::CgroupSock::attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7251. pub aya_obj::obj::ProgramSection::CgroupSockAddr
  7252. pub aya_obj::obj::ProgramSection::CgroupSockAddr::attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7253. pub aya_obj::obj::ProgramSection::CgroupSockopt
  7254. pub aya_obj::obj::ProgramSection::CgroupSockopt::attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7255. pub aya_obj::obj::ProgramSection::CgroupSysctl
  7256. pub aya_obj::obj::ProgramSection::Extension
  7257. pub aya_obj::obj::ProgramSection::FEntry
  7258. pub aya_obj::obj::ProgramSection::FEntry::sleepable: bool
  7259. pub aya_obj::obj::ProgramSection::FExit
  7260. pub aya_obj::obj::ProgramSection::FExit::sleepable: bool
  7261. pub aya_obj::obj::ProgramSection::KProbe
  7262. pub aya_obj::obj::ProgramSection::KRetProbe
  7263. pub aya_obj::obj::ProgramSection::LircMode2
  7264. pub aya_obj::obj::ProgramSection::Lsm
  7265. pub aya_obj::obj::ProgramSection::Lsm::sleepable: bool
  7266. pub aya_obj::obj::ProgramSection::PerfEvent
  7267. pub aya_obj::obj::ProgramSection::RawTracePoint
  7268. pub aya_obj::obj::ProgramSection::SchedClassifier
  7269. pub aya_obj::obj::ProgramSection::SkLookup
  7270. pub aya_obj::obj::ProgramSection::SkMsg
  7271. pub aya_obj::obj::ProgramSection::SkSkbStreamParser
  7272. pub aya_obj::obj::ProgramSection::SkSkbStreamVerdict
  7273. pub aya_obj::obj::ProgramSection::SockOps
  7274. pub aya_obj::obj::ProgramSection::SocketFilter
  7275. pub aya_obj::obj::ProgramSection::TracePoint
  7276. pub aya_obj::obj::ProgramSection::UProbe
  7277. pub aya_obj::obj::ProgramSection::UProbe::sleepable: bool
  7278. pub aya_obj::obj::ProgramSection::URetProbe
  7279. pub aya_obj::obj::ProgramSection::URetProbe::sleepable: bool
  7280. pub aya_obj::obj::ProgramSection::Xdp
  7281. pub aya_obj::obj::ProgramSection::Xdp::attach_type: aya_obj::programs::xdp::XdpAttachType
  7282. pub aya_obj::obj::ProgramSection::Xdp::frags: bool
  7283. impl core::clone::Clone for aya_obj::ProgramSection
  7284. pub fn aya_obj::ProgramSection::clone(&self) -> aya_obj::ProgramSection
  7285. impl core::fmt::Debug for aya_obj::ProgramSection
  7286. pub fn aya_obj::ProgramSection::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7287. impl core::str::traits::FromStr for aya_obj::ProgramSection
  7288. pub type aya_obj::ProgramSection::Err = aya_obj::ParseError
  7289. pub fn aya_obj::ProgramSection::from_str(section: &str) -> core::result::Result<aya_obj::ProgramSection, aya_obj::ParseError>
  7290. impl core::marker::Freeze for aya_obj::ProgramSection
  7291. impl core::marker::Send for aya_obj::ProgramSection
  7292. impl core::marker::Sync for aya_obj::ProgramSection
  7293. impl core::marker::Unpin for aya_obj::ProgramSection
  7294. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::ProgramSection
  7295. impl core::panic::unwind_safe::UnwindSafe for aya_obj::ProgramSection
  7296. impl<T, U> core::convert::Into<U> for aya_obj::ProgramSection where U: core::convert::From<T>
  7297. pub fn aya_obj::ProgramSection::into(self) -> U
  7298. impl<T, U> core::convert::TryFrom<U> for aya_obj::ProgramSection where U: core::convert::Into<T>
  7299. pub type aya_obj::ProgramSection::Error = core::convert::Infallible
  7300. pub fn aya_obj::ProgramSection::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7301. impl<T, U> core::convert::TryInto<U> for aya_obj::ProgramSection where U: core::convert::TryFrom<T>
  7302. pub type aya_obj::ProgramSection::Error = <U as core::convert::TryFrom<T>>::Error
  7303. pub fn aya_obj::ProgramSection::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7304. impl<T> alloc::borrow::ToOwned for aya_obj::ProgramSection where T: core::clone::Clone
  7305. pub type aya_obj::ProgramSection::Owned = T
  7306. pub fn aya_obj::ProgramSection::clone_into(&self, target: &mut T)
  7307. pub fn aya_obj::ProgramSection::to_owned(&self) -> T
  7308. impl<T> core::any::Any for aya_obj::ProgramSection where T: 'static + core::marker::Sized
  7309. pub fn aya_obj::ProgramSection::type_id(&self) -> core::any::TypeId
  7310. impl<T> core::borrow::Borrow<T> for aya_obj::ProgramSection where T: core::marker::Sized
  7311. pub fn aya_obj::ProgramSection::borrow(&self) -> &T
  7312. impl<T> core::borrow::BorrowMut<T> for aya_obj::ProgramSection where T: core::marker::Sized
  7313. pub fn aya_obj::ProgramSection::borrow_mut(&mut self) -> &mut T
  7314. impl<T> core::clone::CloneToUninit for aya_obj::ProgramSection where T: core::clone::Clone
  7315. pub unsafe fn aya_obj::ProgramSection::clone_to_uninit(&self, dst: *mut T)
  7316. impl<T> core::convert::From<T> for aya_obj::ProgramSection
  7317. pub fn aya_obj::ProgramSection::from(t: T) -> T
  7318. pub struct aya_obj::obj::Features
  7319. impl aya_obj::Features
  7320. pub fn aya_obj::Features::bpf_cookie(&self) -> bool
  7321. pub fn aya_obj::Features::bpf_global_data(&self) -> bool
  7322. pub fn aya_obj::Features::bpf_name(&self) -> bool
  7323. pub fn aya_obj::Features::bpf_perf_link(&self) -> bool
  7324. pub fn aya_obj::Features::bpf_probe_read_kernel(&self) -> bool
  7325. pub fn aya_obj::Features::btf(&self) -> core::option::Option<&aya_obj::btf::BtfFeatures>
  7326. pub fn aya_obj::Features::cpumap_prog_id(&self) -> bool
  7327. pub fn aya_obj::Features::devmap_prog_id(&self) -> bool
  7328. impl core::default::Default for aya_obj::Features
  7329. pub fn aya_obj::Features::default() -> aya_obj::Features
  7330. impl core::fmt::Debug for aya_obj::Features
  7331. pub fn aya_obj::Features::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7332. impl core::marker::Freeze for aya_obj::Features
  7333. impl core::marker::Send for aya_obj::Features
  7334. impl core::marker::Sync for aya_obj::Features
  7335. impl core::marker::Unpin for aya_obj::Features
  7336. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Features
  7337. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Features
  7338. impl<T, U> core::convert::Into<U> for aya_obj::Features where U: core::convert::From<T>
  7339. pub fn aya_obj::Features::into(self) -> U
  7340. impl<T, U> core::convert::TryFrom<U> for aya_obj::Features where U: core::convert::Into<T>
  7341. pub type aya_obj::Features::Error = core::convert::Infallible
  7342. pub fn aya_obj::Features::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7343. impl<T, U> core::convert::TryInto<U> for aya_obj::Features where U: core::convert::TryFrom<T>
  7344. pub type aya_obj::Features::Error = <U as core::convert::TryFrom<T>>::Error
  7345. pub fn aya_obj::Features::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7346. impl<T> core::any::Any for aya_obj::Features where T: 'static + core::marker::Sized
  7347. pub fn aya_obj::Features::type_id(&self) -> core::any::TypeId
  7348. impl<T> core::borrow::Borrow<T> for aya_obj::Features where T: core::marker::Sized
  7349. pub fn aya_obj::Features::borrow(&self) -> &T
  7350. impl<T> core::borrow::BorrowMut<T> for aya_obj::Features where T: core::marker::Sized
  7351. pub fn aya_obj::Features::borrow_mut(&mut self) -> &mut T
  7352. impl<T> core::convert::From<T> for aya_obj::Features
  7353. pub fn aya_obj::Features::from(t: T) -> T
  7354. pub struct aya_obj::obj::Function
  7355. pub aya_obj::obj::Function::address: u64
  7356. pub aya_obj::obj::Function::func_info: aya_obj::btf::FuncSecInfo
  7357. pub aya_obj::obj::Function::func_info_rec_size: usize
  7358. pub aya_obj::obj::Function::instructions: alloc::vec::Vec<aya_obj::generated::bpf_insn>
  7359. pub aya_obj::obj::Function::line_info: aya_obj::btf::LineSecInfo
  7360. pub aya_obj::obj::Function::line_info_rec_size: usize
  7361. pub aya_obj::obj::Function::name: alloc::string::String
  7362. pub aya_obj::obj::Function::section_index: object::read::SectionIndex
  7363. pub aya_obj::obj::Function::section_offset: usize
  7364. impl core::clone::Clone for aya_obj::Function
  7365. pub fn aya_obj::Function::clone(&self) -> aya_obj::Function
  7366. impl core::fmt::Debug for aya_obj::Function
  7367. pub fn aya_obj::Function::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7368. impl core::marker::Freeze for aya_obj::Function
  7369. impl core::marker::Send for aya_obj::Function
  7370. impl core::marker::Sync for aya_obj::Function
  7371. impl core::marker::Unpin for aya_obj::Function
  7372. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Function
  7373. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Function
  7374. impl<T, U> core::convert::Into<U> for aya_obj::Function where U: core::convert::From<T>
  7375. pub fn aya_obj::Function::into(self) -> U
  7376. impl<T, U> core::convert::TryFrom<U> for aya_obj::Function where U: core::convert::Into<T>
  7377. pub type aya_obj::Function::Error = core::convert::Infallible
  7378. pub fn aya_obj::Function::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7379. impl<T, U> core::convert::TryInto<U> for aya_obj::Function where U: core::convert::TryFrom<T>
  7380. pub type aya_obj::Function::Error = <U as core::convert::TryFrom<T>>::Error
  7381. pub fn aya_obj::Function::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7382. impl<T> alloc::borrow::ToOwned for aya_obj::Function where T: core::clone::Clone
  7383. pub type aya_obj::Function::Owned = T
  7384. pub fn aya_obj::Function::clone_into(&self, target: &mut T)
  7385. pub fn aya_obj::Function::to_owned(&self) -> T
  7386. impl<T> core::any::Any for aya_obj::Function where T: 'static + core::marker::Sized
  7387. pub fn aya_obj::Function::type_id(&self) -> core::any::TypeId
  7388. impl<T> core::borrow::Borrow<T> for aya_obj::Function where T: core::marker::Sized
  7389. pub fn aya_obj::Function::borrow(&self) -> &T
  7390. impl<T> core::borrow::BorrowMut<T> for aya_obj::Function where T: core::marker::Sized
  7391. pub fn aya_obj::Function::borrow_mut(&mut self) -> &mut T
  7392. impl<T> core::clone::CloneToUninit for aya_obj::Function where T: core::clone::Clone
  7393. pub unsafe fn aya_obj::Function::clone_to_uninit(&self, dst: *mut T)
  7394. impl<T> core::convert::From<T> for aya_obj::Function
  7395. pub fn aya_obj::Function::from(t: T) -> T
  7396. pub struct aya_obj::obj::Object
  7397. pub aya_obj::obj::Object::btf: core::option::Option<aya_obj::btf::Btf>
  7398. pub aya_obj::obj::Object::btf_ext: core::option::Option<aya_obj::btf::BtfExt>
  7399. pub aya_obj::obj::Object::endianness: object::endian::Endianness
  7400. pub aya_obj::obj::Object::functions: alloc::collections::btree::map::BTreeMap<(usize, u64), aya_obj::Function>
  7401. pub aya_obj::obj::Object::kernel_version: core::option::Option<u32>
  7402. pub aya_obj::obj::Object::license: alloc::ffi::c_str::CString
  7403. pub aya_obj::obj::Object::maps: std::collections::hash::map::HashMap<alloc::string::String, aya_obj::maps::Map>
  7404. pub aya_obj::obj::Object::programs: std::collections::hash::map::HashMap<alloc::string::String, aya_obj::Program>
  7405. impl aya_obj::Object
  7406. pub fn aya_obj::Object::fixup_and_sanitize_btf(&mut self, features: &aya_obj::btf::BtfFeatures) -> core::result::Result<core::option::Option<&aya_obj::btf::Btf>, aya_obj::btf::BtfError>
  7407. impl aya_obj::Object
  7408. pub fn aya_obj::Object::parse(data: &[u8]) -> core::result::Result<aya_obj::Object, aya_obj::ParseError>
  7409. pub fn aya_obj::Object::patch_map_data(&mut self, globals: std::collections::hash::map::HashMap<&str, (&[u8], bool)>) -> core::result::Result<(), aya_obj::ParseError>
  7410. pub fn aya_obj::Object::sanitize_functions(&mut self, features: &aya_obj::Features)
  7411. impl aya_obj::Object
  7412. pub fn aya_obj::Object::relocate_btf(&mut self, target_btf: &aya_obj::btf::Btf) -> core::result::Result<(), aya_obj::btf::BtfRelocationError>
  7413. impl aya_obj::Object
  7414. pub fn aya_obj::Object::relocate_calls(&mut self, text_sections: &std::collections::hash::set::HashSet<usize>) -> core::result::Result<(), aya_obj::relocation::EbpfRelocationError>
  7415. pub fn aya_obj::Object::relocate_maps<'a, I: core::iter::traits::iterator::Iterator<Item = (&'a str, std::os::fd::raw::RawFd, &'a aya_obj::maps::Map)>>(&mut self, maps: I, text_sections: &std::collections::hash::set::HashSet<usize>) -> core::result::Result<(), aya_obj::relocation::EbpfRelocationError>
  7416. impl core::clone::Clone for aya_obj::Object
  7417. pub fn aya_obj::Object::clone(&self) -> aya_obj::Object
  7418. impl core::fmt::Debug for aya_obj::Object
  7419. pub fn aya_obj::Object::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7420. impl core::marker::Freeze for aya_obj::Object
  7421. impl core::marker::Send for aya_obj::Object
  7422. impl core::marker::Sync for aya_obj::Object
  7423. impl core::marker::Unpin for aya_obj::Object
  7424. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Object
  7425. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Object
  7426. impl<T, U> core::convert::Into<U> for aya_obj::Object where U: core::convert::From<T>
  7427. pub fn aya_obj::Object::into(self) -> U
  7428. impl<T, U> core::convert::TryFrom<U> for aya_obj::Object where U: core::convert::Into<T>
  7429. pub type aya_obj::Object::Error = core::convert::Infallible
  7430. pub fn aya_obj::Object::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7431. impl<T, U> core::convert::TryInto<U> for aya_obj::Object where U: core::convert::TryFrom<T>
  7432. pub type aya_obj::Object::Error = <U as core::convert::TryFrom<T>>::Error
  7433. pub fn aya_obj::Object::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7434. impl<T> alloc::borrow::ToOwned for aya_obj::Object where T: core::clone::Clone
  7435. pub type aya_obj::Object::Owned = T
  7436. pub fn aya_obj::Object::clone_into(&self, target: &mut T)
  7437. pub fn aya_obj::Object::to_owned(&self) -> T
  7438. impl<T> core::any::Any for aya_obj::Object where T: 'static + core::marker::Sized
  7439. pub fn aya_obj::Object::type_id(&self) -> core::any::TypeId
  7440. impl<T> core::borrow::Borrow<T> for aya_obj::Object where T: core::marker::Sized
  7441. pub fn aya_obj::Object::borrow(&self) -> &T
  7442. impl<T> core::borrow::BorrowMut<T> for aya_obj::Object where T: core::marker::Sized
  7443. pub fn aya_obj::Object::borrow_mut(&mut self) -> &mut T
  7444. impl<T> core::clone::CloneToUninit for aya_obj::Object where T: core::clone::Clone
  7445. pub unsafe fn aya_obj::Object::clone_to_uninit(&self, dst: *mut T)
  7446. impl<T> core::convert::From<T> for aya_obj::Object
  7447. pub fn aya_obj::Object::from(t: T) -> T
  7448. pub struct aya_obj::obj::Program
  7449. pub aya_obj::obj::Program::address: u64
  7450. pub aya_obj::obj::Program::kernel_version: core::option::Option<u32>
  7451. pub aya_obj::obj::Program::license: alloc::ffi::c_str::CString
  7452. pub aya_obj::obj::Program::section: aya_obj::ProgramSection
  7453. pub aya_obj::obj::Program::section_index: usize
  7454. impl aya_obj::Program
  7455. pub fn aya_obj::Program::function_key(&self) -> (usize, u64)
  7456. impl core::clone::Clone for aya_obj::Program
  7457. pub fn aya_obj::Program::clone(&self) -> aya_obj::Program
  7458. impl core::fmt::Debug for aya_obj::Program
  7459. pub fn aya_obj::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7460. impl core::marker::Freeze for aya_obj::Program
  7461. impl core::marker::Send for aya_obj::Program
  7462. impl core::marker::Sync for aya_obj::Program
  7463. impl core::marker::Unpin for aya_obj::Program
  7464. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Program
  7465. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Program
  7466. impl<T, U> core::convert::Into<U> for aya_obj::Program where U: core::convert::From<T>
  7467. pub fn aya_obj::Program::into(self) -> U
  7468. impl<T, U> core::convert::TryFrom<U> for aya_obj::Program where U: core::convert::Into<T>
  7469. pub type aya_obj::Program::Error = core::convert::Infallible
  7470. pub fn aya_obj::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7471. impl<T, U> core::convert::TryInto<U> for aya_obj::Program where U: core::convert::TryFrom<T>
  7472. pub type aya_obj::Program::Error = <U as core::convert::TryFrom<T>>::Error
  7473. pub fn aya_obj::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7474. impl<T> alloc::borrow::ToOwned for aya_obj::Program where T: core::clone::Clone
  7475. pub type aya_obj::Program::Owned = T
  7476. pub fn aya_obj::Program::clone_into(&self, target: &mut T)
  7477. pub fn aya_obj::Program::to_owned(&self) -> T
  7478. impl<T> core::any::Any for aya_obj::Program where T: 'static + core::marker::Sized
  7479. pub fn aya_obj::Program::type_id(&self) -> core::any::TypeId
  7480. impl<T> core::borrow::Borrow<T> for aya_obj::Program where T: core::marker::Sized
  7481. pub fn aya_obj::Program::borrow(&self) -> &T
  7482. impl<T> core::borrow::BorrowMut<T> for aya_obj::Program where T: core::marker::Sized
  7483. pub fn aya_obj::Program::borrow_mut(&mut self) -> &mut T
  7484. impl<T> core::clone::CloneToUninit for aya_obj::Program where T: core::clone::Clone
  7485. pub unsafe fn aya_obj::Program::clone_to_uninit(&self, dst: *mut T)
  7486. impl<T> core::convert::From<T> for aya_obj::Program
  7487. pub fn aya_obj::Program::from(t: T) -> T
  7488. pub fn aya_obj::obj::copy_instructions(data: &[u8]) -> core::result::Result<alloc::vec::Vec<aya_obj::generated::bpf_insn>, aya_obj::ParseError>
  7489. pub fn aya_obj::obj::parse_map_info(info: aya_obj::generated::bpf_map_info, pinned: aya_obj::maps::PinningType) -> aya_obj::maps::Map
  7490. pub mod aya_obj::programs
  7491. pub mod aya_obj::programs::cgroup_sock
  7492. pub enum aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7493. pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::PostBind4
  7494. pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::PostBind6
  7495. pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::SockCreate
  7496. pub aya_obj::programs::cgroup_sock::CgroupSockAttachType::SockRelease
  7497. impl core::clone::Clone for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7498. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone(&self) -> aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7499. impl core::convert::From<aya_obj::programs::cgroup_sock::CgroupSockAttachType> for aya_obj::generated::bpf_attach_type
  7500. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> aya_obj::generated::bpf_attach_type
  7501. impl core::default::Default for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7502. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::default() -> aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7503. impl core::fmt::Debug for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7504. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7505. impl core::marker::Copy for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7506. impl core::marker::Freeze for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7507. impl core::marker::Send for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7508. impl core::marker::Sync for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7509. impl core::marker::Unpin for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7510. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7511. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7512. impl<T, U> core::convert::Into<U> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::From<T>
  7513. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::into(self) -> U
  7514. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::Into<T>
  7515. pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = core::convert::Infallible
  7516. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7517. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::TryFrom<T>
  7518. pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7519. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7520. impl<T> alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::clone::Clone
  7521. pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Owned = T
  7522. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_into(&self, target: &mut T)
  7523. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::to_owned(&self) -> T
  7524. impl<T> core::any::Any for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: 'static + core::marker::Sized
  7525. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::type_id(&self) -> core::any::TypeId
  7526. impl<T> core::borrow::Borrow<T> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized
  7527. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow(&self) -> &T
  7528. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized
  7529. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow_mut(&mut self) -> &mut T
  7530. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::clone::Clone
  7531. pub unsafe fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_to_uninit(&self, dst: *mut T)
  7532. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Copy
  7533. pub unsafe fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_to_uninit(&self, dst: *mut T)
  7534. impl<T> core::convert::From<T> for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7535. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::from(t: T) -> T
  7536. pub mod aya_obj::programs::cgroup_sock_addr
  7537. pub enum aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7538. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Bind4
  7539. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Bind6
  7540. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Connect4
  7541. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Connect6
  7542. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetPeerName4
  7543. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetPeerName6
  7544. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetSockName4
  7545. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::GetSockName6
  7546. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPRecvMsg4
  7547. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPRecvMsg6
  7548. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPSendMsg4
  7549. pub aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::UDPSendMsg6
  7550. impl core::clone::Clone for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7551. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone(&self) -> aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7552. impl core::convert::From<aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType> for aya_obj::generated::bpf_attach_type
  7553. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> aya_obj::generated::bpf_attach_type
  7554. impl core::fmt::Debug for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7555. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7556. impl core::marker::Copy for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7557. impl core::marker::Freeze for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7558. impl core::marker::Send for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7559. impl core::marker::Sync for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7560. impl core::marker::Unpin for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7561. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7562. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7563. impl<T, U> core::convert::Into<U> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::From<T>
  7564. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::into(self) -> U
  7565. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::Into<T>
  7566. pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = core::convert::Infallible
  7567. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7568. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::TryFrom<T>
  7569. pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7570. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7571. impl<T> alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::clone::Clone
  7572. pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Owned = T
  7573. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_into(&self, target: &mut T)
  7574. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::to_owned(&self) -> T
  7575. impl<T> core::any::Any for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: 'static + core::marker::Sized
  7576. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::type_id(&self) -> core::any::TypeId
  7577. impl<T> core::borrow::Borrow<T> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized
  7578. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow(&self) -> &T
  7579. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized
  7580. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow_mut(&mut self) -> &mut T
  7581. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::clone::Clone
  7582. pub unsafe fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_to_uninit(&self, dst: *mut T)
  7583. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Copy
  7584. pub unsafe fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_to_uninit(&self, dst: *mut T)
  7585. impl<T> core::convert::From<T> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7586. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::from(t: T) -> T
  7587. pub mod aya_obj::programs::cgroup_sockopt
  7588. pub enum aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7589. pub aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Get
  7590. pub aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Set
  7591. impl core::clone::Clone for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7592. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone(&self) -> aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7593. impl core::convert::From<aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType> for aya_obj::generated::bpf_attach_type
  7594. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> aya_obj::generated::bpf_attach_type
  7595. impl core::fmt::Debug for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7596. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7597. impl core::marker::Copy for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7598. impl core::marker::Freeze for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7599. impl core::marker::Send for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7600. impl core::marker::Sync for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7601. impl core::marker::Unpin for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7602. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7603. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7604. impl<T, U> core::convert::Into<U> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::From<T>
  7605. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::into(self) -> U
  7606. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::Into<T>
  7607. pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = core::convert::Infallible
  7608. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7609. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::TryFrom<T>
  7610. pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7611. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7612. impl<T> alloc::borrow::ToOwned for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::clone::Clone
  7613. pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Owned = T
  7614. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_into(&self, target: &mut T)
  7615. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::to_owned(&self) -> T
  7616. impl<T> core::any::Any for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: 'static + core::marker::Sized
  7617. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::type_id(&self) -> core::any::TypeId
  7618. impl<T> core::borrow::Borrow<T> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized
  7619. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow(&self) -> &T
  7620. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized
  7621. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow_mut(&mut self) -> &mut T
  7622. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::clone::Clone
  7623. pub unsafe fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_to_uninit(&self, dst: *mut T)
  7624. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Copy
  7625. pub unsafe fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_to_uninit(&self, dst: *mut T)
  7626. impl<T> core::convert::From<T> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7627. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::from(t: T) -> T
  7628. pub mod aya_obj::programs::xdp
  7629. pub enum aya_obj::programs::xdp::XdpAttachType
  7630. pub aya_obj::programs::xdp::XdpAttachType::CpuMap
  7631. pub aya_obj::programs::xdp::XdpAttachType::DevMap
  7632. pub aya_obj::programs::xdp::XdpAttachType::Interface
  7633. impl core::clone::Clone for aya_obj::programs::xdp::XdpAttachType
  7634. pub fn aya_obj::programs::xdp::XdpAttachType::clone(&self) -> aya_obj::programs::xdp::XdpAttachType
  7635. impl core::convert::From<aya_obj::programs::xdp::XdpAttachType> for aya_obj::generated::bpf_attach_type
  7636. pub fn aya_obj::generated::bpf_attach_type::from(value: aya_obj::programs::xdp::XdpAttachType) -> Self
  7637. impl core::fmt::Debug for aya_obj::programs::xdp::XdpAttachType
  7638. pub fn aya_obj::programs::xdp::XdpAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7639. impl core::marker::Copy for aya_obj::programs::xdp::XdpAttachType
  7640. impl core::marker::Freeze for aya_obj::programs::xdp::XdpAttachType
  7641. impl core::marker::Send for aya_obj::programs::xdp::XdpAttachType
  7642. impl core::marker::Sync for aya_obj::programs::xdp::XdpAttachType
  7643. impl core::marker::Unpin for aya_obj::programs::xdp::XdpAttachType
  7644. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::xdp::XdpAttachType
  7645. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::xdp::XdpAttachType
  7646. impl<T, U> core::convert::Into<U> for aya_obj::programs::xdp::XdpAttachType where U: core::convert::From<T>
  7647. pub fn aya_obj::programs::xdp::XdpAttachType::into(self) -> U
  7648. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::xdp::XdpAttachType where U: core::convert::Into<T>
  7649. pub type aya_obj::programs::xdp::XdpAttachType::Error = core::convert::Infallible
  7650. pub fn aya_obj::programs::xdp::XdpAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7651. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::xdp::XdpAttachType where U: core::convert::TryFrom<T>
  7652. pub type aya_obj::programs::xdp::XdpAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7653. pub fn aya_obj::programs::xdp::XdpAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7654. impl<T> alloc::borrow::ToOwned for aya_obj::programs::xdp::XdpAttachType where T: core::clone::Clone
  7655. pub type aya_obj::programs::xdp::XdpAttachType::Owned = T
  7656. pub fn aya_obj::programs::xdp::XdpAttachType::clone_into(&self, target: &mut T)
  7657. pub fn aya_obj::programs::xdp::XdpAttachType::to_owned(&self) -> T
  7658. impl<T> core::any::Any for aya_obj::programs::xdp::XdpAttachType where T: 'static + core::marker::Sized
  7659. pub fn aya_obj::programs::xdp::XdpAttachType::type_id(&self) -> core::any::TypeId
  7660. impl<T> core::borrow::Borrow<T> for aya_obj::programs::xdp::XdpAttachType where T: core::marker::Sized
  7661. pub fn aya_obj::programs::xdp::XdpAttachType::borrow(&self) -> &T
  7662. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::xdp::XdpAttachType where T: core::marker::Sized
  7663. pub fn aya_obj::programs::xdp::XdpAttachType::borrow_mut(&mut self) -> &mut T
  7664. impl<T> core::clone::CloneToUninit for aya_obj::programs::xdp::XdpAttachType where T: core::clone::Clone
  7665. pub unsafe fn aya_obj::programs::xdp::XdpAttachType::clone_to_uninit(&self, dst: *mut T)
  7666. impl<T> core::clone::CloneToUninit for aya_obj::programs::xdp::XdpAttachType where T: core::marker::Copy
  7667. pub unsafe fn aya_obj::programs::xdp::XdpAttachType::clone_to_uninit(&self, dst: *mut T)
  7668. impl<T> core::convert::From<T> for aya_obj::programs::xdp::XdpAttachType
  7669. pub fn aya_obj::programs::xdp::XdpAttachType::from(t: T) -> T
  7670. pub enum aya_obj::programs::CgroupSockAddrAttachType
  7671. pub aya_obj::programs::CgroupSockAddrAttachType::Bind4
  7672. pub aya_obj::programs::CgroupSockAddrAttachType::Bind6
  7673. pub aya_obj::programs::CgroupSockAddrAttachType::Connect4
  7674. pub aya_obj::programs::CgroupSockAddrAttachType::Connect6
  7675. pub aya_obj::programs::CgroupSockAddrAttachType::GetPeerName4
  7676. pub aya_obj::programs::CgroupSockAddrAttachType::GetPeerName6
  7677. pub aya_obj::programs::CgroupSockAddrAttachType::GetSockName4
  7678. pub aya_obj::programs::CgroupSockAddrAttachType::GetSockName6
  7679. pub aya_obj::programs::CgroupSockAddrAttachType::UDPRecvMsg4
  7680. pub aya_obj::programs::CgroupSockAddrAttachType::UDPRecvMsg6
  7681. pub aya_obj::programs::CgroupSockAddrAttachType::UDPSendMsg4
  7682. pub aya_obj::programs::CgroupSockAddrAttachType::UDPSendMsg6
  7683. impl core::clone::Clone for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7684. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone(&self) -> aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7685. impl core::convert::From<aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType> for aya_obj::generated::bpf_attach_type
  7686. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> aya_obj::generated::bpf_attach_type
  7687. impl core::fmt::Debug for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7688. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7689. impl core::marker::Copy for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7690. impl core::marker::Freeze for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7691. impl core::marker::Send for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7692. impl core::marker::Sync for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7693. impl core::marker::Unpin for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7694. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7695. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7696. impl<T, U> core::convert::Into<U> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::From<T>
  7697. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::into(self) -> U
  7698. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::Into<T>
  7699. pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = core::convert::Infallible
  7700. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7701. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where U: core::convert::TryFrom<T>
  7702. pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7703. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7704. impl<T> alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::clone::Clone
  7705. pub type aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::Owned = T
  7706. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_into(&self, target: &mut T)
  7707. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::to_owned(&self) -> T
  7708. impl<T> core::any::Any for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: 'static + core::marker::Sized
  7709. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::type_id(&self) -> core::any::TypeId
  7710. impl<T> core::borrow::Borrow<T> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized
  7711. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow(&self) -> &T
  7712. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Sized
  7713. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::borrow_mut(&mut self) -> &mut T
  7714. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::clone::Clone
  7715. pub unsafe fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_to_uninit(&self, dst: *mut T)
  7716. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType where T: core::marker::Copy
  7717. pub unsafe fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::clone_to_uninit(&self, dst: *mut T)
  7718. impl<T> core::convert::From<T> for aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  7719. pub fn aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType::from(t: T) -> T
  7720. pub enum aya_obj::programs::CgroupSockAttachType
  7721. pub aya_obj::programs::CgroupSockAttachType::PostBind4
  7722. pub aya_obj::programs::CgroupSockAttachType::PostBind6
  7723. pub aya_obj::programs::CgroupSockAttachType::SockCreate
  7724. pub aya_obj::programs::CgroupSockAttachType::SockRelease
  7725. impl core::clone::Clone for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7726. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone(&self) -> aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7727. impl core::convert::From<aya_obj::programs::cgroup_sock::CgroupSockAttachType> for aya_obj::generated::bpf_attach_type
  7728. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> aya_obj::generated::bpf_attach_type
  7729. impl core::default::Default for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7730. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::default() -> aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7731. impl core::fmt::Debug for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7732. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7733. impl core::marker::Copy for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7734. impl core::marker::Freeze for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7735. impl core::marker::Send for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7736. impl core::marker::Sync for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7737. impl core::marker::Unpin for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7738. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7739. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7740. impl<T, U> core::convert::Into<U> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::From<T>
  7741. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::into(self) -> U
  7742. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::Into<T>
  7743. pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = core::convert::Infallible
  7744. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7745. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where U: core::convert::TryFrom<T>
  7746. pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7747. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7748. impl<T> alloc::borrow::ToOwned for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::clone::Clone
  7749. pub type aya_obj::programs::cgroup_sock::CgroupSockAttachType::Owned = T
  7750. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_into(&self, target: &mut T)
  7751. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::to_owned(&self) -> T
  7752. impl<T> core::any::Any for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: 'static + core::marker::Sized
  7753. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::type_id(&self) -> core::any::TypeId
  7754. impl<T> core::borrow::Borrow<T> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized
  7755. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow(&self) -> &T
  7756. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Sized
  7757. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::borrow_mut(&mut self) -> &mut T
  7758. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::clone::Clone
  7759. pub unsafe fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_to_uninit(&self, dst: *mut T)
  7760. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sock::CgroupSockAttachType where T: core::marker::Copy
  7761. pub unsafe fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::clone_to_uninit(&self, dst: *mut T)
  7762. impl<T> core::convert::From<T> for aya_obj::programs::cgroup_sock::CgroupSockAttachType
  7763. pub fn aya_obj::programs::cgroup_sock::CgroupSockAttachType::from(t: T) -> T
  7764. pub enum aya_obj::programs::CgroupSockoptAttachType
  7765. pub aya_obj::programs::CgroupSockoptAttachType::Get
  7766. pub aya_obj::programs::CgroupSockoptAttachType::Set
  7767. impl core::clone::Clone for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7768. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone(&self) -> aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7769. impl core::convert::From<aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType> for aya_obj::generated::bpf_attach_type
  7770. pub fn aya_obj::generated::bpf_attach_type::from(s: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> aya_obj::generated::bpf_attach_type
  7771. impl core::fmt::Debug for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7772. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7773. impl core::marker::Copy for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7774. impl core::marker::Freeze for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7775. impl core::marker::Send for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7776. impl core::marker::Sync for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7777. impl core::marker::Unpin for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7778. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7779. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7780. impl<T, U> core::convert::Into<U> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::From<T>
  7781. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::into(self) -> U
  7782. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::Into<T>
  7783. pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = core::convert::Infallible
  7784. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7785. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where U: core::convert::TryFrom<T>
  7786. pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7787. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7788. impl<T> alloc::borrow::ToOwned for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::clone::Clone
  7789. pub type aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::Owned = T
  7790. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_into(&self, target: &mut T)
  7791. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::to_owned(&self) -> T
  7792. impl<T> core::any::Any for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: 'static + core::marker::Sized
  7793. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::type_id(&self) -> core::any::TypeId
  7794. impl<T> core::borrow::Borrow<T> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized
  7795. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow(&self) -> &T
  7796. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Sized
  7797. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::borrow_mut(&mut self) -> &mut T
  7798. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::clone::Clone
  7799. pub unsafe fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_to_uninit(&self, dst: *mut T)
  7800. impl<T> core::clone::CloneToUninit for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType where T: core::marker::Copy
  7801. pub unsafe fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::clone_to_uninit(&self, dst: *mut T)
  7802. impl<T> core::convert::From<T> for aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  7803. pub fn aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType::from(t: T) -> T
  7804. pub enum aya_obj::programs::XdpAttachType
  7805. pub aya_obj::programs::XdpAttachType::CpuMap
  7806. pub aya_obj::programs::XdpAttachType::DevMap
  7807. pub aya_obj::programs::XdpAttachType::Interface
  7808. impl core::clone::Clone for aya_obj::programs::xdp::XdpAttachType
  7809. pub fn aya_obj::programs::xdp::XdpAttachType::clone(&self) -> aya_obj::programs::xdp::XdpAttachType
  7810. impl core::convert::From<aya_obj::programs::xdp::XdpAttachType> for aya_obj::generated::bpf_attach_type
  7811. pub fn aya_obj::generated::bpf_attach_type::from(value: aya_obj::programs::xdp::XdpAttachType) -> Self
  7812. impl core::fmt::Debug for aya_obj::programs::xdp::XdpAttachType
  7813. pub fn aya_obj::programs::xdp::XdpAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7814. impl core::marker::Copy for aya_obj::programs::xdp::XdpAttachType
  7815. impl core::marker::Freeze for aya_obj::programs::xdp::XdpAttachType
  7816. impl core::marker::Send for aya_obj::programs::xdp::XdpAttachType
  7817. impl core::marker::Sync for aya_obj::programs::xdp::XdpAttachType
  7818. impl core::marker::Unpin for aya_obj::programs::xdp::XdpAttachType
  7819. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::programs::xdp::XdpAttachType
  7820. impl core::panic::unwind_safe::UnwindSafe for aya_obj::programs::xdp::XdpAttachType
  7821. impl<T, U> core::convert::Into<U> for aya_obj::programs::xdp::XdpAttachType where U: core::convert::From<T>
  7822. pub fn aya_obj::programs::xdp::XdpAttachType::into(self) -> U
  7823. impl<T, U> core::convert::TryFrom<U> for aya_obj::programs::xdp::XdpAttachType where U: core::convert::Into<T>
  7824. pub type aya_obj::programs::xdp::XdpAttachType::Error = core::convert::Infallible
  7825. pub fn aya_obj::programs::xdp::XdpAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7826. impl<T, U> core::convert::TryInto<U> for aya_obj::programs::xdp::XdpAttachType where U: core::convert::TryFrom<T>
  7827. pub type aya_obj::programs::xdp::XdpAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  7828. pub fn aya_obj::programs::xdp::XdpAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7829. impl<T> alloc::borrow::ToOwned for aya_obj::programs::xdp::XdpAttachType where T: core::clone::Clone
  7830. pub type aya_obj::programs::xdp::XdpAttachType::Owned = T
  7831. pub fn aya_obj::programs::xdp::XdpAttachType::clone_into(&self, target: &mut T)
  7832. pub fn aya_obj::programs::xdp::XdpAttachType::to_owned(&self) -> T
  7833. impl<T> core::any::Any for aya_obj::programs::xdp::XdpAttachType where T: 'static + core::marker::Sized
  7834. pub fn aya_obj::programs::xdp::XdpAttachType::type_id(&self) -> core::any::TypeId
  7835. impl<T> core::borrow::Borrow<T> for aya_obj::programs::xdp::XdpAttachType where T: core::marker::Sized
  7836. pub fn aya_obj::programs::xdp::XdpAttachType::borrow(&self) -> &T
  7837. impl<T> core::borrow::BorrowMut<T> for aya_obj::programs::xdp::XdpAttachType where T: core::marker::Sized
  7838. pub fn aya_obj::programs::xdp::XdpAttachType::borrow_mut(&mut self) -> &mut T
  7839. impl<T> core::clone::CloneToUninit for aya_obj::programs::xdp::XdpAttachType where T: core::clone::Clone
  7840. pub unsafe fn aya_obj::programs::xdp::XdpAttachType::clone_to_uninit(&self, dst: *mut T)
  7841. impl<T> core::clone::CloneToUninit for aya_obj::programs::xdp::XdpAttachType where T: core::marker::Copy
  7842. pub unsafe fn aya_obj::programs::xdp::XdpAttachType::clone_to_uninit(&self, dst: *mut T)
  7843. impl<T> core::convert::From<T> for aya_obj::programs::xdp::XdpAttachType
  7844. pub fn aya_obj::programs::xdp::XdpAttachType::from(t: T) -> T
  7845. pub mod aya_obj::relocation
  7846. pub enum aya_obj::relocation::RelocationError
  7847. pub aya_obj::relocation::RelocationError::InvalidRelocationOffset
  7848. pub aya_obj::relocation::RelocationError::InvalidRelocationOffset::offset: u64
  7849. pub aya_obj::relocation::RelocationError::InvalidRelocationOffset::relocation_number: usize
  7850. pub aya_obj::relocation::RelocationError::SectionNotFound
  7851. pub aya_obj::relocation::RelocationError::SectionNotFound::section_index: usize
  7852. pub aya_obj::relocation::RelocationError::SectionNotFound::symbol_index: usize
  7853. pub aya_obj::relocation::RelocationError::SectionNotFound::symbol_name: core::option::Option<alloc::string::String>
  7854. pub aya_obj::relocation::RelocationError::UnknownFunction
  7855. pub aya_obj::relocation::RelocationError::UnknownFunction::address: u64
  7856. pub aya_obj::relocation::RelocationError::UnknownFunction::caller_name: alloc::string::String
  7857. pub aya_obj::relocation::RelocationError::UnknownProgram
  7858. pub aya_obj::relocation::RelocationError::UnknownProgram::address: u64
  7859. pub aya_obj::relocation::RelocationError::UnknownProgram::section_index: usize
  7860. pub aya_obj::relocation::RelocationError::UnknownSymbol
  7861. pub aya_obj::relocation::RelocationError::UnknownSymbol::index: usize
  7862. impl core::error::Error for aya_obj::relocation::RelocationError
  7863. impl core::fmt::Debug for aya_obj::relocation::RelocationError
  7864. pub fn aya_obj::relocation::RelocationError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7865. impl core::fmt::Display for aya_obj::relocation::RelocationError
  7866. pub fn aya_obj::relocation::RelocationError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7867. impl core::marker::Freeze for aya_obj::relocation::RelocationError
  7868. impl core::marker::Send for aya_obj::relocation::RelocationError
  7869. impl core::marker::Sync for aya_obj::relocation::RelocationError
  7870. impl core::marker::Unpin for aya_obj::relocation::RelocationError
  7871. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::relocation::RelocationError
  7872. impl core::panic::unwind_safe::UnwindSafe for aya_obj::relocation::RelocationError
  7873. impl<T, U> core::convert::Into<U> for aya_obj::relocation::RelocationError where U: core::convert::From<T>
  7874. pub fn aya_obj::relocation::RelocationError::into(self) -> U
  7875. impl<T, U> core::convert::TryFrom<U> for aya_obj::relocation::RelocationError where U: core::convert::Into<T>
  7876. pub type aya_obj::relocation::RelocationError::Error = core::convert::Infallible
  7877. pub fn aya_obj::relocation::RelocationError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7878. impl<T, U> core::convert::TryInto<U> for aya_obj::relocation::RelocationError where U: core::convert::TryFrom<T>
  7879. pub type aya_obj::relocation::RelocationError::Error = <U as core::convert::TryFrom<T>>::Error
  7880. pub fn aya_obj::relocation::RelocationError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7881. impl<T> alloc::string::ToString for aya_obj::relocation::RelocationError where T: core::fmt::Display + core::marker::Sized
  7882. pub fn aya_obj::relocation::RelocationError::to_string(&self) -> alloc::string::String
  7883. impl<T> core::any::Any for aya_obj::relocation::RelocationError where T: 'static + core::marker::Sized
  7884. pub fn aya_obj::relocation::RelocationError::type_id(&self) -> core::any::TypeId
  7885. impl<T> core::borrow::Borrow<T> for aya_obj::relocation::RelocationError where T: core::marker::Sized
  7886. pub fn aya_obj::relocation::RelocationError::borrow(&self) -> &T
  7887. impl<T> core::borrow::BorrowMut<T> for aya_obj::relocation::RelocationError where T: core::marker::Sized
  7888. pub fn aya_obj::relocation::RelocationError::borrow_mut(&mut self) -> &mut T
  7889. impl<T> core::convert::From<T> for aya_obj::relocation::RelocationError
  7890. pub fn aya_obj::relocation::RelocationError::from(t: T) -> T
  7891. pub struct aya_obj::relocation::EbpfRelocationError
  7892. impl core::error::Error for aya_obj::relocation::EbpfRelocationError
  7893. pub fn aya_obj::relocation::EbpfRelocationError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7894. impl core::fmt::Debug for aya_obj::relocation::EbpfRelocationError
  7895. pub fn aya_obj::relocation::EbpfRelocationError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7896. impl core::fmt::Display for aya_obj::relocation::EbpfRelocationError
  7897. pub fn aya_obj::relocation::EbpfRelocationError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7898. impl core::marker::Freeze for aya_obj::relocation::EbpfRelocationError
  7899. impl core::marker::Send for aya_obj::relocation::EbpfRelocationError
  7900. impl core::marker::Sync for aya_obj::relocation::EbpfRelocationError
  7901. impl core::marker::Unpin for aya_obj::relocation::EbpfRelocationError
  7902. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::relocation::EbpfRelocationError
  7903. impl core::panic::unwind_safe::UnwindSafe for aya_obj::relocation::EbpfRelocationError
  7904. impl<T, U> core::convert::Into<U> for aya_obj::relocation::EbpfRelocationError where U: core::convert::From<T>
  7905. pub fn aya_obj::relocation::EbpfRelocationError::into(self) -> U
  7906. impl<T, U> core::convert::TryFrom<U> for aya_obj::relocation::EbpfRelocationError where U: core::convert::Into<T>
  7907. pub type aya_obj::relocation::EbpfRelocationError::Error = core::convert::Infallible
  7908. pub fn aya_obj::relocation::EbpfRelocationError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7909. impl<T, U> core::convert::TryInto<U> for aya_obj::relocation::EbpfRelocationError where U: core::convert::TryFrom<T>
  7910. pub type aya_obj::relocation::EbpfRelocationError::Error = <U as core::convert::TryFrom<T>>::Error
  7911. pub fn aya_obj::relocation::EbpfRelocationError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7912. impl<T> alloc::string::ToString for aya_obj::relocation::EbpfRelocationError where T: core::fmt::Display + core::marker::Sized
  7913. pub fn aya_obj::relocation::EbpfRelocationError::to_string(&self) -> alloc::string::String
  7914. impl<T> core::any::Any for aya_obj::relocation::EbpfRelocationError where T: 'static + core::marker::Sized
  7915. pub fn aya_obj::relocation::EbpfRelocationError::type_id(&self) -> core::any::TypeId
  7916. impl<T> core::borrow::Borrow<T> for aya_obj::relocation::EbpfRelocationError where T: core::marker::Sized
  7917. pub fn aya_obj::relocation::EbpfRelocationError::borrow(&self) -> &T
  7918. impl<T> core::borrow::BorrowMut<T> for aya_obj::relocation::EbpfRelocationError where T: core::marker::Sized
  7919. pub fn aya_obj::relocation::EbpfRelocationError::borrow_mut(&mut self) -> &mut T
  7920. impl<T> core::convert::From<T> for aya_obj::relocation::EbpfRelocationError
  7921. pub fn aya_obj::relocation::EbpfRelocationError::from(t: T) -> T
  7922. pub enum aya_obj::EbpfSectionKind
  7923. pub aya_obj::EbpfSectionKind::Bss
  7924. pub aya_obj::EbpfSectionKind::Btf
  7925. pub aya_obj::EbpfSectionKind::BtfExt
  7926. pub aya_obj::EbpfSectionKind::BtfMaps
  7927. pub aya_obj::EbpfSectionKind::Data
  7928. pub aya_obj::EbpfSectionKind::License
  7929. pub aya_obj::EbpfSectionKind::Maps
  7930. pub aya_obj::EbpfSectionKind::Program
  7931. pub aya_obj::EbpfSectionKind::Rodata
  7932. pub aya_obj::EbpfSectionKind::Text
  7933. pub aya_obj::EbpfSectionKind::Undefined
  7934. pub aya_obj::EbpfSectionKind::Version
  7935. impl core::clone::Clone for aya_obj::EbpfSectionKind
  7936. pub fn aya_obj::EbpfSectionKind::clone(&self) -> aya_obj::EbpfSectionKind
  7937. impl core::cmp::Eq for aya_obj::EbpfSectionKind
  7938. impl core::cmp::PartialEq for aya_obj::EbpfSectionKind
  7939. pub fn aya_obj::EbpfSectionKind::eq(&self, other: &aya_obj::EbpfSectionKind) -> bool
  7940. impl core::fmt::Debug for aya_obj::EbpfSectionKind
  7941. pub fn aya_obj::EbpfSectionKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7942. impl core::marker::Copy for aya_obj::EbpfSectionKind
  7943. impl core::marker::StructuralPartialEq for aya_obj::EbpfSectionKind
  7944. impl core::marker::Freeze for aya_obj::EbpfSectionKind
  7945. impl core::marker::Send for aya_obj::EbpfSectionKind
  7946. impl core::marker::Sync for aya_obj::EbpfSectionKind
  7947. impl core::marker::Unpin for aya_obj::EbpfSectionKind
  7948. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::EbpfSectionKind
  7949. impl core::panic::unwind_safe::UnwindSafe for aya_obj::EbpfSectionKind
  7950. impl<T, U> core::convert::Into<U> for aya_obj::EbpfSectionKind where U: core::convert::From<T>
  7951. pub fn aya_obj::EbpfSectionKind::into(self) -> U
  7952. impl<T, U> core::convert::TryFrom<U> for aya_obj::EbpfSectionKind where U: core::convert::Into<T>
  7953. pub type aya_obj::EbpfSectionKind::Error = core::convert::Infallible
  7954. pub fn aya_obj::EbpfSectionKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7955. impl<T, U> core::convert::TryInto<U> for aya_obj::EbpfSectionKind where U: core::convert::TryFrom<T>
  7956. pub type aya_obj::EbpfSectionKind::Error = <U as core::convert::TryFrom<T>>::Error
  7957. pub fn aya_obj::EbpfSectionKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7958. impl<T> alloc::borrow::ToOwned for aya_obj::EbpfSectionKind where T: core::clone::Clone
  7959. pub type aya_obj::EbpfSectionKind::Owned = T
  7960. pub fn aya_obj::EbpfSectionKind::clone_into(&self, target: &mut T)
  7961. pub fn aya_obj::EbpfSectionKind::to_owned(&self) -> T
  7962. impl<T> core::any::Any for aya_obj::EbpfSectionKind where T: 'static + core::marker::Sized
  7963. pub fn aya_obj::EbpfSectionKind::type_id(&self) -> core::any::TypeId
  7964. impl<T> core::borrow::Borrow<T> for aya_obj::EbpfSectionKind where T: core::marker::Sized
  7965. pub fn aya_obj::EbpfSectionKind::borrow(&self) -> &T
  7966. impl<T> core::borrow::BorrowMut<T> for aya_obj::EbpfSectionKind where T: core::marker::Sized
  7967. pub fn aya_obj::EbpfSectionKind::borrow_mut(&mut self) -> &mut T
  7968. impl<T> core::clone::CloneToUninit for aya_obj::EbpfSectionKind where T: core::clone::Clone
  7969. pub unsafe fn aya_obj::EbpfSectionKind::clone_to_uninit(&self, dst: *mut T)
  7970. impl<T> core::clone::CloneToUninit for aya_obj::EbpfSectionKind where T: core::marker::Copy
  7971. pub unsafe fn aya_obj::EbpfSectionKind::clone_to_uninit(&self, dst: *mut T)
  7972. impl<T> core::convert::From<T> for aya_obj::EbpfSectionKind
  7973. pub fn aya_obj::EbpfSectionKind::from(t: T) -> T
  7974. pub enum aya_obj::Map
  7975. pub aya_obj::Map::Btf(aya_obj::maps::BtfMap)
  7976. pub aya_obj::Map::Legacy(aya_obj::maps::LegacyMap)
  7977. impl aya_obj::maps::Map
  7978. pub fn aya_obj::maps::Map::data(&self) -> &[u8]
  7979. pub fn aya_obj::maps::Map::data_mut(&mut self) -> &mut alloc::vec::Vec<u8>
  7980. pub fn aya_obj::maps::Map::key_size(&self) -> u32
  7981. pub fn aya_obj::maps::Map::map_flags(&self) -> u32
  7982. pub fn aya_obj::maps::Map::map_type(&self) -> u32
  7983. pub fn aya_obj::maps::Map::max_entries(&self) -> u32
  7984. pub fn aya_obj::maps::Map::pinning(&self) -> aya_obj::maps::PinningType
  7985. pub fn aya_obj::maps::Map::section_index(&self) -> usize
  7986. pub fn aya_obj::maps::Map::section_kind(&self) -> aya_obj::EbpfSectionKind
  7987. pub fn aya_obj::maps::Map::set_max_entries(&mut self, v: u32)
  7988. pub fn aya_obj::maps::Map::set_value_size(&mut self, size: u32)
  7989. pub fn aya_obj::maps::Map::symbol_index(&self) -> core::option::Option<usize>
  7990. pub fn aya_obj::maps::Map::value_size(&self) -> u32
  7991. impl core::clone::Clone for aya_obj::maps::Map
  7992. pub fn aya_obj::maps::Map::clone(&self) -> aya_obj::maps::Map
  7993. impl core::fmt::Debug for aya_obj::maps::Map
  7994. pub fn aya_obj::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7995. impl core::marker::Freeze for aya_obj::maps::Map
  7996. impl core::marker::Send for aya_obj::maps::Map
  7997. impl core::marker::Sync for aya_obj::maps::Map
  7998. impl core::marker::Unpin for aya_obj::maps::Map
  7999. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::maps::Map
  8000. impl core::panic::unwind_safe::UnwindSafe for aya_obj::maps::Map
  8001. impl<T, U> core::convert::Into<U> for aya_obj::maps::Map where U: core::convert::From<T>
  8002. pub fn aya_obj::maps::Map::into(self) -> U
  8003. impl<T, U> core::convert::TryFrom<U> for aya_obj::maps::Map where U: core::convert::Into<T>
  8004. pub type aya_obj::maps::Map::Error = core::convert::Infallible
  8005. pub fn aya_obj::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8006. impl<T, U> core::convert::TryInto<U> for aya_obj::maps::Map where U: core::convert::TryFrom<T>
  8007. pub type aya_obj::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  8008. pub fn aya_obj::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8009. impl<T> alloc::borrow::ToOwned for aya_obj::maps::Map where T: core::clone::Clone
  8010. pub type aya_obj::maps::Map::Owned = T
  8011. pub fn aya_obj::maps::Map::clone_into(&self, target: &mut T)
  8012. pub fn aya_obj::maps::Map::to_owned(&self) -> T
  8013. impl<T> core::any::Any for aya_obj::maps::Map where T: 'static + core::marker::Sized
  8014. pub fn aya_obj::maps::Map::type_id(&self) -> core::any::TypeId
  8015. impl<T> core::borrow::Borrow<T> for aya_obj::maps::Map where T: core::marker::Sized
  8016. pub fn aya_obj::maps::Map::borrow(&self) -> &T
  8017. impl<T> core::borrow::BorrowMut<T> for aya_obj::maps::Map where T: core::marker::Sized
  8018. pub fn aya_obj::maps::Map::borrow_mut(&mut self) -> &mut T
  8019. impl<T> core::clone::CloneToUninit for aya_obj::maps::Map where T: core::clone::Clone
  8020. pub unsafe fn aya_obj::maps::Map::clone_to_uninit(&self, dst: *mut T)
  8021. impl<T> core::convert::From<T> for aya_obj::maps::Map
  8022. pub fn aya_obj::maps::Map::from(t: T) -> T
  8023. pub enum aya_obj::ParseError
  8024. pub aya_obj::ParseError::BtfError(aya_obj::btf::BtfError)
  8025. pub aya_obj::ParseError::ElfError(object::read::Error)
  8026. pub aya_obj::ParseError::InvalidGlobalData
  8027. pub aya_obj::ParseError::InvalidGlobalData::data_size: usize
  8028. pub aya_obj::ParseError::InvalidGlobalData::name: alloc::string::String
  8029. pub aya_obj::ParseError::InvalidGlobalData::sym_size: u64
  8030. pub aya_obj::ParseError::InvalidKernelVersion
  8031. pub aya_obj::ParseError::InvalidKernelVersion::data: alloc::vec::Vec<u8>
  8032. pub aya_obj::ParseError::InvalidLicense
  8033. pub aya_obj::ParseError::InvalidLicense::data: alloc::vec::Vec<u8>
  8034. pub aya_obj::ParseError::InvalidMapDefinition
  8035. pub aya_obj::ParseError::InvalidMapDefinition::name: alloc::string::String
  8036. pub aya_obj::ParseError::InvalidProgramCode
  8037. pub aya_obj::ParseError::InvalidProgramSection
  8038. pub aya_obj::ParseError::InvalidProgramSection::section: alloc::string::String
  8039. pub aya_obj::ParseError::InvalidSymbol
  8040. pub aya_obj::ParseError::InvalidSymbol::index: usize
  8041. pub aya_obj::ParseError::InvalidSymbol::name: core::option::Option<alloc::string::String>
  8042. pub aya_obj::ParseError::MapNotFound
  8043. pub aya_obj::ParseError::MapNotFound::index: usize
  8044. pub aya_obj::ParseError::MapSymbolNameNotFound
  8045. pub aya_obj::ParseError::MapSymbolNameNotFound::i: usize
  8046. pub aya_obj::ParseError::MissingLicenseNullTerminator
  8047. pub aya_obj::ParseError::MissingLicenseNullTerminator::data: alloc::vec::Vec<u8>
  8048. pub aya_obj::ParseError::NoBTF
  8049. pub aya_obj::ParseError::NoSymbolsForSection
  8050. pub aya_obj::ParseError::NoSymbolsForSection::section_name: alloc::string::String
  8051. pub aya_obj::ParseError::SectionError
  8052. pub aya_obj::ParseError::SectionError::error: object::read::Error
  8053. pub aya_obj::ParseError::SectionError::index: usize
  8054. pub aya_obj::ParseError::SymbolNotFound
  8055. pub aya_obj::ParseError::SymbolNotFound::name: alloc::string::String
  8056. pub aya_obj::ParseError::SymbolTableConflict
  8057. pub aya_obj::ParseError::SymbolTableConflict::address: u64
  8058. pub aya_obj::ParseError::SymbolTableConflict::section_index: usize
  8059. pub aya_obj::ParseError::UnknownSymbol
  8060. pub aya_obj::ParseError::UnknownSymbol::address: u64
  8061. pub aya_obj::ParseError::UnknownSymbol::section_index: usize
  8062. pub aya_obj::ParseError::UnsupportedRelocationTarget
  8063. impl core::convert::From<aya_obj::btf::BtfError> for aya_obj::ParseError
  8064. pub fn aya_obj::ParseError::from(source: aya_obj::btf::BtfError) -> Self
  8065. impl core::error::Error for aya_obj::ParseError
  8066. pub fn aya_obj::ParseError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  8067. impl core::fmt::Debug for aya_obj::ParseError
  8068. pub fn aya_obj::ParseError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8069. impl core::fmt::Display for aya_obj::ParseError
  8070. pub fn aya_obj::ParseError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8071. impl core::marker::Freeze for aya_obj::ParseError
  8072. impl core::marker::Send for aya_obj::ParseError
  8073. impl core::marker::Sync for aya_obj::ParseError
  8074. impl core::marker::Unpin for aya_obj::ParseError
  8075. impl !core::panic::unwind_safe::RefUnwindSafe for aya_obj::ParseError
  8076. impl !core::panic::unwind_safe::UnwindSafe for aya_obj::ParseError
  8077. impl<T, U> core::convert::Into<U> for aya_obj::ParseError where U: core::convert::From<T>
  8078. pub fn aya_obj::ParseError::into(self) -> U
  8079. impl<T, U> core::convert::TryFrom<U> for aya_obj::ParseError where U: core::convert::Into<T>
  8080. pub type aya_obj::ParseError::Error = core::convert::Infallible
  8081. pub fn aya_obj::ParseError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8082. impl<T, U> core::convert::TryInto<U> for aya_obj::ParseError where U: core::convert::TryFrom<T>
  8083. pub type aya_obj::ParseError::Error = <U as core::convert::TryFrom<T>>::Error
  8084. pub fn aya_obj::ParseError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8085. impl<T> alloc::string::ToString for aya_obj::ParseError where T: core::fmt::Display + core::marker::Sized
  8086. pub fn aya_obj::ParseError::to_string(&self) -> alloc::string::String
  8087. impl<T> core::any::Any for aya_obj::ParseError where T: 'static + core::marker::Sized
  8088. pub fn aya_obj::ParseError::type_id(&self) -> core::any::TypeId
  8089. impl<T> core::borrow::Borrow<T> for aya_obj::ParseError where T: core::marker::Sized
  8090. pub fn aya_obj::ParseError::borrow(&self) -> &T
  8091. impl<T> core::borrow::BorrowMut<T> for aya_obj::ParseError where T: core::marker::Sized
  8092. pub fn aya_obj::ParseError::borrow_mut(&mut self) -> &mut T
  8093. impl<T> core::convert::From<T> for aya_obj::ParseError
  8094. pub fn aya_obj::ParseError::from(t: T) -> T
  8095. pub enum aya_obj::ProgramSection
  8096. pub aya_obj::ProgramSection::BtfTracePoint
  8097. pub aya_obj::ProgramSection::CgroupDevice
  8098. pub aya_obj::ProgramSection::CgroupSkb
  8099. pub aya_obj::ProgramSection::CgroupSkbEgress
  8100. pub aya_obj::ProgramSection::CgroupSkbIngress
  8101. pub aya_obj::ProgramSection::CgroupSock
  8102. pub aya_obj::ProgramSection::CgroupSock::attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType
  8103. pub aya_obj::ProgramSection::CgroupSockAddr
  8104. pub aya_obj::ProgramSection::CgroupSockAddr::attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  8105. pub aya_obj::ProgramSection::CgroupSockopt
  8106. pub aya_obj::ProgramSection::CgroupSockopt::attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType
  8107. pub aya_obj::ProgramSection::CgroupSysctl
  8108. pub aya_obj::ProgramSection::Extension
  8109. pub aya_obj::ProgramSection::FEntry
  8110. pub aya_obj::ProgramSection::FEntry::sleepable: bool
  8111. pub aya_obj::ProgramSection::FExit
  8112. pub aya_obj::ProgramSection::FExit::sleepable: bool
  8113. pub aya_obj::ProgramSection::KProbe
  8114. pub aya_obj::ProgramSection::KRetProbe
  8115. pub aya_obj::ProgramSection::LircMode2
  8116. pub aya_obj::ProgramSection::Lsm
  8117. pub aya_obj::ProgramSection::Lsm::sleepable: bool
  8118. pub aya_obj::ProgramSection::PerfEvent
  8119. pub aya_obj::ProgramSection::RawTracePoint
  8120. pub aya_obj::ProgramSection::SchedClassifier
  8121. pub aya_obj::ProgramSection::SkLookup
  8122. pub aya_obj::ProgramSection::SkMsg
  8123. pub aya_obj::ProgramSection::SkSkbStreamParser
  8124. pub aya_obj::ProgramSection::SkSkbStreamVerdict
  8125. pub aya_obj::ProgramSection::SockOps
  8126. pub aya_obj::ProgramSection::SocketFilter
  8127. pub aya_obj::ProgramSection::TracePoint
  8128. pub aya_obj::ProgramSection::UProbe
  8129. pub aya_obj::ProgramSection::UProbe::sleepable: bool
  8130. pub aya_obj::ProgramSection::URetProbe
  8131. pub aya_obj::ProgramSection::URetProbe::sleepable: bool
  8132. pub aya_obj::ProgramSection::Xdp
  8133. pub aya_obj::ProgramSection::Xdp::attach_type: aya_obj::programs::xdp::XdpAttachType
  8134. pub aya_obj::ProgramSection::Xdp::frags: bool
  8135. impl core::clone::Clone for aya_obj::ProgramSection
  8136. pub fn aya_obj::ProgramSection::clone(&self) -> aya_obj::ProgramSection
  8137. impl core::fmt::Debug for aya_obj::ProgramSection
  8138. pub fn aya_obj::ProgramSection::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8139. impl core::str::traits::FromStr for aya_obj::ProgramSection
  8140. pub type aya_obj::ProgramSection::Err = aya_obj::ParseError
  8141. pub fn aya_obj::ProgramSection::from_str(section: &str) -> core::result::Result<aya_obj::ProgramSection, aya_obj::ParseError>
  8142. impl core::marker::Freeze for aya_obj::ProgramSection
  8143. impl core::marker::Send for aya_obj::ProgramSection
  8144. impl core::marker::Sync for aya_obj::ProgramSection
  8145. impl core::marker::Unpin for aya_obj::ProgramSection
  8146. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::ProgramSection
  8147. impl core::panic::unwind_safe::UnwindSafe for aya_obj::ProgramSection
  8148. impl<T, U> core::convert::Into<U> for aya_obj::ProgramSection where U: core::convert::From<T>
  8149. pub fn aya_obj::ProgramSection::into(self) -> U
  8150. impl<T, U> core::convert::TryFrom<U> for aya_obj::ProgramSection where U: core::convert::Into<T>
  8151. pub type aya_obj::ProgramSection::Error = core::convert::Infallible
  8152. pub fn aya_obj::ProgramSection::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8153. impl<T, U> core::convert::TryInto<U> for aya_obj::ProgramSection where U: core::convert::TryFrom<T>
  8154. pub type aya_obj::ProgramSection::Error = <U as core::convert::TryFrom<T>>::Error
  8155. pub fn aya_obj::ProgramSection::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8156. impl<T> alloc::borrow::ToOwned for aya_obj::ProgramSection where T: core::clone::Clone
  8157. pub type aya_obj::ProgramSection::Owned = T
  8158. pub fn aya_obj::ProgramSection::clone_into(&self, target: &mut T)
  8159. pub fn aya_obj::ProgramSection::to_owned(&self) -> T
  8160. impl<T> core::any::Any for aya_obj::ProgramSection where T: 'static + core::marker::Sized
  8161. pub fn aya_obj::ProgramSection::type_id(&self) -> core::any::TypeId
  8162. impl<T> core::borrow::Borrow<T> for aya_obj::ProgramSection where T: core::marker::Sized
  8163. pub fn aya_obj::ProgramSection::borrow(&self) -> &T
  8164. impl<T> core::borrow::BorrowMut<T> for aya_obj::ProgramSection where T: core::marker::Sized
  8165. pub fn aya_obj::ProgramSection::borrow_mut(&mut self) -> &mut T
  8166. impl<T> core::clone::CloneToUninit for aya_obj::ProgramSection where T: core::clone::Clone
  8167. pub unsafe fn aya_obj::ProgramSection::clone_to_uninit(&self, dst: *mut T)
  8168. impl<T> core::convert::From<T> for aya_obj::ProgramSection
  8169. pub fn aya_obj::ProgramSection::from(t: T) -> T
  8170. pub struct aya_obj::Features
  8171. impl aya_obj::Features
  8172. pub fn aya_obj::Features::bpf_cookie(&self) -> bool
  8173. pub fn aya_obj::Features::bpf_global_data(&self) -> bool
  8174. pub fn aya_obj::Features::bpf_name(&self) -> bool
  8175. pub fn aya_obj::Features::bpf_perf_link(&self) -> bool
  8176. pub fn aya_obj::Features::bpf_probe_read_kernel(&self) -> bool
  8177. pub fn aya_obj::Features::btf(&self) -> core::option::Option<&aya_obj::btf::BtfFeatures>
  8178. pub fn aya_obj::Features::cpumap_prog_id(&self) -> bool
  8179. pub fn aya_obj::Features::devmap_prog_id(&self) -> bool
  8180. impl core::default::Default for aya_obj::Features
  8181. pub fn aya_obj::Features::default() -> aya_obj::Features
  8182. impl core::fmt::Debug for aya_obj::Features
  8183. pub fn aya_obj::Features::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8184. impl core::marker::Freeze for aya_obj::Features
  8185. impl core::marker::Send for aya_obj::Features
  8186. impl core::marker::Sync for aya_obj::Features
  8187. impl core::marker::Unpin for aya_obj::Features
  8188. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Features
  8189. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Features
  8190. impl<T, U> core::convert::Into<U> for aya_obj::Features where U: core::convert::From<T>
  8191. pub fn aya_obj::Features::into(self) -> U
  8192. impl<T, U> core::convert::TryFrom<U> for aya_obj::Features where U: core::convert::Into<T>
  8193. pub type aya_obj::Features::Error = core::convert::Infallible
  8194. pub fn aya_obj::Features::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8195. impl<T, U> core::convert::TryInto<U> for aya_obj::Features where U: core::convert::TryFrom<T>
  8196. pub type aya_obj::Features::Error = <U as core::convert::TryFrom<T>>::Error
  8197. pub fn aya_obj::Features::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8198. impl<T> core::any::Any for aya_obj::Features where T: 'static + core::marker::Sized
  8199. pub fn aya_obj::Features::type_id(&self) -> core::any::TypeId
  8200. impl<T> core::borrow::Borrow<T> for aya_obj::Features where T: core::marker::Sized
  8201. pub fn aya_obj::Features::borrow(&self) -> &T
  8202. impl<T> core::borrow::BorrowMut<T> for aya_obj::Features where T: core::marker::Sized
  8203. pub fn aya_obj::Features::borrow_mut(&mut self) -> &mut T
  8204. impl<T> core::convert::From<T> for aya_obj::Features
  8205. pub fn aya_obj::Features::from(t: T) -> T
  8206. pub struct aya_obj::Function
  8207. pub aya_obj::Function::address: u64
  8208. pub aya_obj::Function::func_info: aya_obj::btf::FuncSecInfo
  8209. pub aya_obj::Function::func_info_rec_size: usize
  8210. pub aya_obj::Function::instructions: alloc::vec::Vec<aya_obj::generated::bpf_insn>
  8211. pub aya_obj::Function::line_info: aya_obj::btf::LineSecInfo
  8212. pub aya_obj::Function::line_info_rec_size: usize
  8213. pub aya_obj::Function::name: alloc::string::String
  8214. pub aya_obj::Function::section_index: object::read::SectionIndex
  8215. pub aya_obj::Function::section_offset: usize
  8216. impl core::clone::Clone for aya_obj::Function
  8217. pub fn aya_obj::Function::clone(&self) -> aya_obj::Function
  8218. impl core::fmt::Debug for aya_obj::Function
  8219. pub fn aya_obj::Function::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8220. impl core::marker::Freeze for aya_obj::Function
  8221. impl core::marker::Send for aya_obj::Function
  8222. impl core::marker::Sync for aya_obj::Function
  8223. impl core::marker::Unpin for aya_obj::Function
  8224. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Function
  8225. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Function
  8226. impl<T, U> core::convert::Into<U> for aya_obj::Function where U: core::convert::From<T>
  8227. pub fn aya_obj::Function::into(self) -> U
  8228. impl<T, U> core::convert::TryFrom<U> for aya_obj::Function where U: core::convert::Into<T>
  8229. pub type aya_obj::Function::Error = core::convert::Infallible
  8230. pub fn aya_obj::Function::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8231. impl<T, U> core::convert::TryInto<U> for aya_obj::Function where U: core::convert::TryFrom<T>
  8232. pub type aya_obj::Function::Error = <U as core::convert::TryFrom<T>>::Error
  8233. pub fn aya_obj::Function::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8234. impl<T> alloc::borrow::ToOwned for aya_obj::Function where T: core::clone::Clone
  8235. pub type aya_obj::Function::Owned = T
  8236. pub fn aya_obj::Function::clone_into(&self, target: &mut T)
  8237. pub fn aya_obj::Function::to_owned(&self) -> T
  8238. impl<T> core::any::Any for aya_obj::Function where T: 'static + core::marker::Sized
  8239. pub fn aya_obj::Function::type_id(&self) -> core::any::TypeId
  8240. impl<T> core::borrow::Borrow<T> for aya_obj::Function where T: core::marker::Sized
  8241. pub fn aya_obj::Function::borrow(&self) -> &T
  8242. impl<T> core::borrow::BorrowMut<T> for aya_obj::Function where T: core::marker::Sized
  8243. pub fn aya_obj::Function::borrow_mut(&mut self) -> &mut T
  8244. impl<T> core::clone::CloneToUninit for aya_obj::Function where T: core::clone::Clone
  8245. pub unsafe fn aya_obj::Function::clone_to_uninit(&self, dst: *mut T)
  8246. impl<T> core::convert::From<T> for aya_obj::Function
  8247. pub fn aya_obj::Function::from(t: T) -> T
  8248. pub struct aya_obj::Object
  8249. pub aya_obj::Object::btf: core::option::Option<aya_obj::btf::Btf>
  8250. pub aya_obj::Object::btf_ext: core::option::Option<aya_obj::btf::BtfExt>
  8251. pub aya_obj::Object::endianness: object::endian::Endianness
  8252. pub aya_obj::Object::functions: alloc::collections::btree::map::BTreeMap<(usize, u64), aya_obj::Function>
  8253. pub aya_obj::Object::kernel_version: core::option::Option<u32>
  8254. pub aya_obj::Object::license: alloc::ffi::c_str::CString
  8255. pub aya_obj::Object::maps: std::collections::hash::map::HashMap<alloc::string::String, aya_obj::maps::Map>
  8256. pub aya_obj::Object::programs: std::collections::hash::map::HashMap<alloc::string::String, aya_obj::Program>
  8257. impl aya_obj::Object
  8258. pub fn aya_obj::Object::fixup_and_sanitize_btf(&mut self, features: &aya_obj::btf::BtfFeatures) -> core::result::Result<core::option::Option<&aya_obj::btf::Btf>, aya_obj::btf::BtfError>
  8259. impl aya_obj::Object
  8260. pub fn aya_obj::Object::parse(data: &[u8]) -> core::result::Result<aya_obj::Object, aya_obj::ParseError>
  8261. pub fn aya_obj::Object::patch_map_data(&mut self, globals: std::collections::hash::map::HashMap<&str, (&[u8], bool)>) -> core::result::Result<(), aya_obj::ParseError>
  8262. pub fn aya_obj::Object::sanitize_functions(&mut self, features: &aya_obj::Features)
  8263. impl aya_obj::Object
  8264. pub fn aya_obj::Object::relocate_btf(&mut self, target_btf: &aya_obj::btf::Btf) -> core::result::Result<(), aya_obj::btf::BtfRelocationError>
  8265. impl aya_obj::Object
  8266. pub fn aya_obj::Object::relocate_calls(&mut self, text_sections: &std::collections::hash::set::HashSet<usize>) -> core::result::Result<(), aya_obj::relocation::EbpfRelocationError>
  8267. pub fn aya_obj::Object::relocate_maps<'a, I: core::iter::traits::iterator::Iterator<Item = (&'a str, std::os::fd::raw::RawFd, &'a aya_obj::maps::Map)>>(&mut self, maps: I, text_sections: &std::collections::hash::set::HashSet<usize>) -> core::result::Result<(), aya_obj::relocation::EbpfRelocationError>
  8268. impl core::clone::Clone for aya_obj::Object
  8269. pub fn aya_obj::Object::clone(&self) -> aya_obj::Object
  8270. impl core::fmt::Debug for aya_obj::Object
  8271. pub fn aya_obj::Object::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8272. impl core::marker::Freeze for aya_obj::Object
  8273. impl core::marker::Send for aya_obj::Object
  8274. impl core::marker::Sync for aya_obj::Object
  8275. impl core::marker::Unpin for aya_obj::Object
  8276. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Object
  8277. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Object
  8278. impl<T, U> core::convert::Into<U> for aya_obj::Object where U: core::convert::From<T>
  8279. pub fn aya_obj::Object::into(self) -> U
  8280. impl<T, U> core::convert::TryFrom<U> for aya_obj::Object where U: core::convert::Into<T>
  8281. pub type aya_obj::Object::Error = core::convert::Infallible
  8282. pub fn aya_obj::Object::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8283. impl<T, U> core::convert::TryInto<U> for aya_obj::Object where U: core::convert::TryFrom<T>
  8284. pub type aya_obj::Object::Error = <U as core::convert::TryFrom<T>>::Error
  8285. pub fn aya_obj::Object::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8286. impl<T> alloc::borrow::ToOwned for aya_obj::Object where T: core::clone::Clone
  8287. pub type aya_obj::Object::Owned = T
  8288. pub fn aya_obj::Object::clone_into(&self, target: &mut T)
  8289. pub fn aya_obj::Object::to_owned(&self) -> T
  8290. impl<T> core::any::Any for aya_obj::Object where T: 'static + core::marker::Sized
  8291. pub fn aya_obj::Object::type_id(&self) -> core::any::TypeId
  8292. impl<T> core::borrow::Borrow<T> for aya_obj::Object where T: core::marker::Sized
  8293. pub fn aya_obj::Object::borrow(&self) -> &T
  8294. impl<T> core::borrow::BorrowMut<T> for aya_obj::Object where T: core::marker::Sized
  8295. pub fn aya_obj::Object::borrow_mut(&mut self) -> &mut T
  8296. impl<T> core::clone::CloneToUninit for aya_obj::Object where T: core::clone::Clone
  8297. pub unsafe fn aya_obj::Object::clone_to_uninit(&self, dst: *mut T)
  8298. impl<T> core::convert::From<T> for aya_obj::Object
  8299. pub fn aya_obj::Object::from(t: T) -> T
  8300. pub struct aya_obj::Program
  8301. pub aya_obj::Program::address: u64
  8302. pub aya_obj::Program::kernel_version: core::option::Option<u32>
  8303. pub aya_obj::Program::license: alloc::ffi::c_str::CString
  8304. pub aya_obj::Program::section: aya_obj::ProgramSection
  8305. pub aya_obj::Program::section_index: usize
  8306. impl aya_obj::Program
  8307. pub fn aya_obj::Program::function_key(&self) -> (usize, u64)
  8308. impl core::clone::Clone for aya_obj::Program
  8309. pub fn aya_obj::Program::clone(&self) -> aya_obj::Program
  8310. impl core::fmt::Debug for aya_obj::Program
  8311. pub fn aya_obj::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8312. impl core::marker::Freeze for aya_obj::Program
  8313. impl core::marker::Send for aya_obj::Program
  8314. impl core::marker::Sync for aya_obj::Program
  8315. impl core::marker::Unpin for aya_obj::Program
  8316. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::Program
  8317. impl core::panic::unwind_safe::UnwindSafe for aya_obj::Program
  8318. impl<T, U> core::convert::Into<U> for aya_obj::Program where U: core::convert::From<T>
  8319. pub fn aya_obj::Program::into(self) -> U
  8320. impl<T, U> core::convert::TryFrom<U> for aya_obj::Program where U: core::convert::Into<T>
  8321. pub type aya_obj::Program::Error = core::convert::Infallible
  8322. pub fn aya_obj::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8323. impl<T, U> core::convert::TryInto<U> for aya_obj::Program where U: core::convert::TryFrom<T>
  8324. pub type aya_obj::Program::Error = <U as core::convert::TryFrom<T>>::Error
  8325. pub fn aya_obj::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8326. impl<T> alloc::borrow::ToOwned for aya_obj::Program where T: core::clone::Clone
  8327. pub type aya_obj::Program::Owned = T
  8328. pub fn aya_obj::Program::clone_into(&self, target: &mut T)
  8329. pub fn aya_obj::Program::to_owned(&self) -> T
  8330. impl<T> core::any::Any for aya_obj::Program where T: 'static + core::marker::Sized
  8331. pub fn aya_obj::Program::type_id(&self) -> core::any::TypeId
  8332. impl<T> core::borrow::Borrow<T> for aya_obj::Program where T: core::marker::Sized
  8333. pub fn aya_obj::Program::borrow(&self) -> &T
  8334. impl<T> core::borrow::BorrowMut<T> for aya_obj::Program where T: core::marker::Sized
  8335. pub fn aya_obj::Program::borrow_mut(&mut self) -> &mut T
  8336. impl<T> core::clone::CloneToUninit for aya_obj::Program where T: core::clone::Clone
  8337. pub unsafe fn aya_obj::Program::clone_to_uninit(&self, dst: *mut T)
  8338. impl<T> core::convert::From<T> for aya_obj::Program
  8339. pub fn aya_obj::Program::from(t: T) -> T
  8340. pub struct aya_obj::VerifierLog(_)
  8341. impl aya_obj::VerifierLog
  8342. pub fn aya_obj::VerifierLog::new(log: alloc::string::String) -> Self
  8343. impl core::fmt::Debug for aya_obj::VerifierLog
  8344. pub fn aya_obj::VerifierLog::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8345. impl core::fmt::Display for aya_obj::VerifierLog
  8346. pub fn aya_obj::VerifierLog::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  8347. impl core::marker::Freeze for aya_obj::VerifierLog
  8348. impl core::marker::Send for aya_obj::VerifierLog
  8349. impl core::marker::Sync for aya_obj::VerifierLog
  8350. impl core::marker::Unpin for aya_obj::VerifierLog
  8351. impl core::panic::unwind_safe::RefUnwindSafe for aya_obj::VerifierLog
  8352. impl core::panic::unwind_safe::UnwindSafe for aya_obj::VerifierLog
  8353. impl<T, U> core::convert::Into<U> for aya_obj::VerifierLog where U: core::convert::From<T>
  8354. pub fn aya_obj::VerifierLog::into(self) -> U
  8355. impl<T, U> core::convert::TryFrom<U> for aya_obj::VerifierLog where U: core::convert::Into<T>
  8356. pub type aya_obj::VerifierLog::Error = core::convert::Infallible
  8357. pub fn aya_obj::VerifierLog::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  8358. impl<T, U> core::convert::TryInto<U> for aya_obj::VerifierLog where U: core::convert::TryFrom<T>
  8359. pub type aya_obj::VerifierLog::Error = <U as core::convert::TryFrom<T>>::Error
  8360. pub fn aya_obj::VerifierLog::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  8361. impl<T> alloc::string::ToString for aya_obj::VerifierLog where T: core::fmt::Display + core::marker::Sized
  8362. pub fn aya_obj::VerifierLog::to_string(&self) -> alloc::string::String
  8363. impl<T> core::any::Any for aya_obj::VerifierLog where T: 'static + core::marker::Sized
  8364. pub fn aya_obj::VerifierLog::type_id(&self) -> core::any::TypeId
  8365. impl<T> core::borrow::Borrow<T> for aya_obj::VerifierLog where T: core::marker::Sized
  8366. pub fn aya_obj::VerifierLog::borrow(&self) -> &T
  8367. impl<T> core::borrow::BorrowMut<T> for aya_obj::VerifierLog where T: core::marker::Sized
  8368. pub fn aya_obj::VerifierLog::borrow_mut(&mut self) -> &mut T
  8369. impl<T> core::convert::From<T> for aya_obj::VerifierLog
  8370. pub fn aya_obj::VerifierLog::from(t: T) -> T
  8371. pub fn aya_obj::copy_instructions(data: &[u8]) -> core::result::Result<alloc::vec::Vec<aya_obj::generated::bpf_insn>, aya_obj::ParseError>
  8372. pub fn aya_obj::parse_map_info(info: aya_obj::generated::bpf_map_info, pinned: aya_obj::maps::PinningType) -> aya_obj::maps::Map